:root {
    --primary: #0056b3;
    --primary-dark: #003d7a;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #e9ecef;
    --white: #ffffff;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section-container {
    margin-top: 100px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-info a:hover {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Main content */
main {
    margin-top: 90px;
    padding: 40px 0;
}

section {
    margin-bottom: 80px;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

h1 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
    color: var(--secondary);
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
    color: var(--secondary);
}

/* Content blocks */
.content-block {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}
.content-block img {
justify-content: center;
border-radius: 15px;
width: 1085px;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-section p, 
.footer-section a {
    color: #adb5bd;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 120px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* Mobile menu styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

nav {
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 1;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    
    .logo {
        margin-bottom: 0;
        order: 0;
    }
    
    .contact-info {
        display: none;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
    }
    
    main {
        margin-top: 70px;
    }
}

/* Animation for menu toggle */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
}


  /* Cookie Banner Styles */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f9f9fa;
    backdrop-filter: blur(20px);
    border-top: 1px solid #9aa7b5;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: "Segoe UI", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cookie-text {
    flex: 1;
    color: #1658a5;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cookie-text strong {
    color: #1658a5;
  }

  .cookie-text a {
    color: #9aa7b5;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .cookie-text a:hover {
    color: #9aa7b5;
    opacity: 0.8;
  }

  .cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .cookie-btn-accept {
    background: linear-gradient(45deg, #9aa7b5, #9aa7b5);
    color: #FFFFFF;
    box-shadow: 0 4px 15px #9aa7b540;
  }

  .cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #9aa7b560;
  }

  .cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #1658a5;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #1658a5;
  }

  .cookie-btn-settings {
    background: transparent;
    color: #9aa7b5;
    border: 1px solid #9aa7b5;
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .cookie-btn-settings:hover {
    background: #9aa7b520;
  }

  /* Cookie Settings Modal */
  .cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .cookie-modal.show {
    display: flex;
  }

  .cookie-modal-content {
    background: #f9f9fa;
    border-radius: 15px;
    border: 1px solid #9aa7b5;
    max-width: 300px;
    width: 100%;
    max-height: 40vh;
    overflow-y: auto;
    padding: 15px;
    font-family: "Segoe UI", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }

  .cookie-modal-header {
    margin-bottom: 15px;
  }

  .cookie-modal-title {
    font-size: 1.2rem;
    color: #9aa7b5;
    margin-bottom: 8px;
  }

  .cookie-category {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .cookie-category-title {
    font-weight: 600;
    color: #1658a5;
  }

  .cookie-switch {
    position: relative;
    width: 50px;
    height: 24px;
  }

  .cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
  }

  .cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
  }

  input:checked + .cookie-slider {
    background-color: #9aa7b5;
  }

  input:checked + .cookie-slider:before {
    transform: translateX(26px);
  }

  input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .cookie-category-description {
    color: #1658a5;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cookie-modal-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }

    .cookie-buttons {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cookie-btn {
      flex: 1;
      min-width: 120px;
    }

    .cookie-modal-content {
      margin: 5px;
      padding: 12px;
    }

    .cookie-category-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }
