body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f0f8ff;
    color: #004AAD;
    text-align: center;
  }
  
  header {
    padding: 20px;
    background: #e6f0ff;
    border-bottom: 2px solid #004AAD;
  }
  
  .logo {
    width: 140px;
    height: auto;
    margin-bottom: 10px;
  }
  
  h1 {
    font-size: 48px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
    background-color: #cce6ff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .navbar a,
  .dropbtn {
    background-color: #004AAD;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .navbar a:hover,
  .dropbtn:hover {
    background-color: #0066cc;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
  }
  
  .dropdown-content a:hover {
    background-color: #f0f8ff;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .content {
    padding: 40px 20px;
    font-size: 20px;
    max-width: 800px;
    margin: auto;
  }
  
  .displayed-image {
    max-width: 90%;
    height: auto;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-radius: 12px;
  }
  .subnav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px 15px;
    background-color: #eaf4ff;
    border-top: 1px solid #b3d1ff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Sakrij scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer i Edge */
  }
  
  .subnav::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  
  .subnav a {
    flex: 0 0 auto;
    background-color: #d6eaff;
    color: #004AAD;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .subnav a:hover {
    background-color: #c0dcff;
  }  
  
  .displayed-image {
    max-width: 90%;
    height: auto;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-radius: 12px;
  }
  .kontakt-info {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #004AAD;
  }
  
  .kontakt-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #003080;
  }
  
  .kontakt-info a {
    color: #004AAD;
    text-decoration: none;
    font-weight: bold;
  }
  
  .kontakt-info a:hover {
    text-decoration: underline;
  }