/* ========================================
   VARIABLES
   ======================================== */
/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
   :root {
    /* Colors - Primary */
    --primary-blue: #101D4D;
    --primary-light: #212F5C;
    --accent-blue: #7391C9;
    --light-blue: #6B89B9;
    --lighter-blue: #5C7DB5;
    --services-blue: #6886B6;
    --bg-light-blue: #EAF3FF;
    --newsletter-blue: #BED2EC;
    --footer-blue: #151E45;
  
    /* Colors - Neutrals */
    --white: #FFFFFF;
    --black: #0B0B0B;
    --gray-light: #F5F5F5;
    --gray: rgba(0, 0, 0, 0.85);
    --gray-medium: rgba(0, 0, 0, 0.75);
    --gray-border: rgba(0, 0, 0, 0.15);
  
    /* Typography */
    --font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
    /* Spacing */
    --container-max: 1440px;
    --section-padding: 120px;
  
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  
  /* ========================================
     BASE
     ======================================== */
  /* ========================================
     RESET & BASE STYLES
     ======================================== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: var(--font-family);
    color: #000000;
    line-height: 1.65;
    background: linear-gradient(180deg, #FFFFFF 13.942%, #EDF5FF 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    font-kerning: normal;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  
  /* ========================================
     CONTAINERS
     ======================================== */
  /* ========================================
     CONTAINERS
     ======================================== */
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .container--wide {
    max-width: 1920px;
  }
  
  /* Responsive Container Padding */
  @media (max-width: 1200px) {
    .container {
      padding: 0 40px;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }
  }
  
  
  /* ========================================
     BUTTONS
     ======================================== */
  /* ========================================
     BUTTONS
     ======================================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 56px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.3px;
    will-change: transform, box-shadow;
    transform: translateZ(0);
  }
  
  .btn--primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--white);
    backface-visibility: hidden;
  }
  
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
  }
  
  .btn--primary:active {
    transform: translateY(0);
  }
  
  .btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(8px);
  }
  
  .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.9);
  }
  
  .btn--secondary:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .btn--dark {
    background: #1A1F3A;
    color: var(--white);
    min-width: 180px;
    box-shadow: 0 1px 4px rgba(26, 31, 58, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .btn--dark:hover {
    background: #252B4A;
    box-shadow: 0 2px 8px rgba(26, 31, 58, 0.3);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .btn--dark:active {
    transform: translateY(0);
  }
  
  .btn--outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
  }
  
  .btn--outline-dark:hover {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .btn--outline-dark:active {
    transform: scale(0.98);
  }
  
  /* Button Sizes */
  .btn--large {
    padding: 24px 64px;
    font-size: 17px;
  }
  
  .btn--small {
    padding: 16px 40px;
    font-size: 14px;
  }
  
  
  /* ========================================
     CARDS
     ======================================== */
  /* ========================================
     CARDS
     ======================================== */
  
  /* Team Cards */
  .team-card {
    text-align: center;
    contain: layout style paint;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-4px);
  }

  .team-card:hover .team-card__image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.12);
  }

  .team-card:hover .team-card__name {
    color: #101D4D;
  }

  /* Team page member name links */
  article h3 a:hover {
    color: #101D4D !important;
  }

  /* About page team member links */
  .about-team-grid a:hover {
    transform: translateY(-4px);
  }

  .about-team-grid a:hover .about-team-photo {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15) !important;
  }

  .about-team-grid a:hover h3 {
    color: #101D4D;
  }

  .team-card__image {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 3/4;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
  }
  
  .team-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
  }
  .team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-card__name {
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .team-card__role {
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  
  /* Stats Cards */
  .stat {
    text-align: center;
    flex: 1;
    position: relative;
  }
  
  .stat__number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    color: var(--white);
  }
  
  .stat__label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .stats {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 48px 56px;
    display: flex;
    justify-content: space-between;
    gap: 70px;
    max-width: 1050px;
    margin: 0 auto;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    position: relative;
  }
  
  .stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  /* Resource Cards */
  .resource-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    contain: layout style paint;
  }
  
  .resource-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
  }
  
  .resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.16);
  }
  
  .resource-card__image {
    width: 100%;
    height: 100%;
  }
  
  .resource-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .resource-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(29, 42, 82, 0.98) 0%, rgba(29, 42, 82, 0.88) 50%, transparent 100%);
    color: var(--white);
    text-align: left;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
  }
  
  .resource-card__overlay h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }
  
  /* Service Cards */
  .service-card {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 40px;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.08),
      0 16px 40px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #7391C9;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 8px 16px rgba(0, 0, 0, 0.12),
      0 24px 56px rgba(0, 0, 0, 0.16);
  }
  
  .service-card__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #0B0B0B;
    margin-bottom: 16px;
  }
  
  .service-card__description {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 24px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stats {
      flex-direction: column;
      gap: 28px;
      padding: 32px 24px;
      border-radius: 6px;
    }
  
    .stat {
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
  
    .stat:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
  
    .stat__number {
      font-size: 30px;
    }
  
    .stat__label {
      font-size: 12px;
    }
  }
  
  
  /* ========================================
     FOOTER
     ======================================== */
  /* ========================================
     FOOTER
     ======================================== */
  .footer {
    background: #101D4D;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer__main {
    display: grid;
    grid-template-columns: 1.3fr 2.7fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer__brand {
    max-width: 400px;
  }
  
  .footer__brand img {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
  }
  
  .footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 380px;
  }
  
  .footer__nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  .footer__column h3 {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__column li {
    margin-bottom: 12px;
  }
  
  .footer__column a,
  .footer__column span {
    font-size: 14px;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    letter-spacing: 0.2px;
    text-decoration: none;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    display: inline-block;
  }
  
  .footer__column a:hover {
    opacity: 1;
    color: var(--white);
  }
  
  .footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }
  
  .footer__contact-list svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer__contact-list a:hover {
    opacity: 1;
    color: var(--white);
  }
  
  .footer__contact-list span {
    opacity: 0.75;
  }
  
  .footer__bottom {
    padding: 30px 0 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  .footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  
  .footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .footer__copyright {
    font-size: 13px;
    opacity: 0.5;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer__legal-links {
    display: flex;
    gap: 20px;
  }
  
  .footer__legal-links a {
    font-size: 13px;
    opacity: 0.5;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer__legal-links a:hover {
    opacity: 0.85;
  }
  
  .footer__credit {
    font-size: 13px;
    opacity: 0.6;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer__credit a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
  }
  
  .footer__credit a:hover {
    opacity: 1;
    color: var(--white);
  }
  
  .footer__social {
    display: flex;
    gap: 8px;
  }
  
  .footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer__social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .footer__social svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .footer__social a:hover svg {
    opacity: 0.9;
  }
  
  /* ========================================
     RESPONSIVE
     ======================================== */
  @media (max-width: 768px) {
    .footer {
      padding: 60px 0 0;
    }
  
    .footer__main {
      grid-template-columns: 1fr;
      gap: 50px;
      margin-bottom: 50px;
      padding-bottom: 40px;
    }
  
    .footer__brand {
      max-width: 100%;
    }
  
    .footer__brand img {
      height: 56px;
    }
  
    .footer__nav-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 30px;
    }
  
    .footer__bottom {
      flex-direction: column;
      gap: 24px;
      padding: 28px 0 34px;
    }
  
    .footer__bottom-left {
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }
  
    .footer__bottom-right {
      flex-direction: column-reverse;
      gap: 20px;
      width: 100%;
    }
  
    .footer__copyright,
    .footer__credit {
      text-align: center;
    }
  
    .footer__legal-links {
      justify-content: center;
    }
  
    .footer__social {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      padding: 50px 0 0;
    }
  
    .footer__main {
      gap: 40px;
      margin-bottom: 40px;
      padding-bottom: 36px;
    }
  
    .footer__nav-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .footer__brand {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footer__brand img {
      height: 52px;
    }
  
    .footer__tagline {
      text-align: center;
    }
  
    .footer__column {
      text-align: center;
    }
  
    .footer__contact-list li {
      justify-content: center;
    }
  
    .footer__bottom {
      padding: 24px 0 32px;
    }
  }
  
  
  /* ========================================
     FORMS
     ======================================== */
  /* ========================================
     FORMS
     ======================================== */
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group--full {
    grid-column: 1 / -1;
  }
  
  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0B0B0B;
    margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 18px 20px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    font-size: 16px;
    background: var(--white);
    transition: all 0.2s ease;
    font-family: var(--font-family);
    color: #000000;
    font-weight: 500;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 29, 77, 0.08);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-family);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.45);
    font-size: 16px;
    letter-spacing: 0.2px;
  }
  
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 8px;
    padding-right: 45px;
    color: rgba(0, 0, 0, 0.57);
  }
  
  .form-group select:focus,
  .form-group select:active {
    color: var(--black);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 8px;
  }
  
  .select-wrapper {
    width: 100%;
    display: block;
  }
  
  .select-wrapper select {
    width: 100%;
  }
  
  /* Contact Form Specific */
  .contact-form {
    display: grid;
    gap: 24px;
  }
  
  .contact-form .btn {
    grid-column: 1 / -1;
    padding: 20px 48px;
    font-size: 18px;
    width: 100%;
    background: #353A5A;
    color: var(--white);
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(53, 58, 90, 0.2);
    border-radius: 0;
  }
  
  .contact-form .btn:hover {
    background: #3D4263;
    box-shadow: 0 4px 12px rgba(53, 58, 90, 0.3);
    transform: translateY(-1px);
  }
  
  .contact-form .btn:active {
    transform: translateY(0);
  }
  
  /* Newsletter Form */
  .newsletter-form {
    max-width: 540px;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
  }
  
  .newsletter-form input {
    width: 100%;
    padding: 24px 88px 24px 36px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 16px;
    background: var(--white);
    color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.45);
  }
  
  .newsletter-form input:focus {
    outline: none;
    box-shadow: 0 12px 32px rgba(16, 29, 77, 0.12);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
  }
  
  .newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 0;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(16, 29, 77, 0.2);
  }
  
  .newsletter-form button:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 24px rgba(16, 29, 77, 0.3);
    transform: translateY(-50%) scale(1.05);
  }
  
  .newsletter-form svg {
    width: 20px;
    height: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-form {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* ========================================
     HEADER
     ======================================== */
  /* ========================================
     HEADER
     ======================================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all 0.2s ease;
  }
  
  .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Apply scrolled header styles immediately on pages with white backgrounds */
  .white-bg-page .header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
  }
  
  .header__logo {
    height: 42px;
    width: auto;
    transition: all 0.2s ease;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1002;
  }

  /* Logo switching - default shows light logo for dark backgrounds */
  .header__logo--light {
    display: block;
  }

  .header__logo--dark {
    display: none;
  }

  /* On white background pages, show dark logo */
  .white-bg-page .header__logo--light {
    display: none;
  }

  .white-bg-page .header__logo--dark {
    display: block;
  }

  /* When scrolled on normal pages, show dark logo */
  .header.scrolled .header__logo--light {
    display: none;
  }

  .header.scrolled .header__logo--dark {
    display: block;
  }

  .header.scrolled .header__logo {
    height: 36px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  }

  .white-bg-page .header .header__logo {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  }

  .header__logo:hover {
    opacity: 0.85;
  }
  
  .header__nav {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
    justify-content: flex-end;
    position: static;
  }
  
  .header__nav a {
    color: var(--white);
    font-size: 14.5px;
    font-weight: 600;
    transition: opacity 0.2s ease;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  
  .header.scrolled .header__nav a {
    color: #1a1a1a;
    text-shadow: none;
  }

  .white-bg-page .header .header__nav a {
    color: #1a1a1a;
    text-shadow: none;
  }

  .header__nav a:hover {
    opacity: 0.65;
  }
  
  /* Dropdown Menu */
  .header__dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .header__dropdown-toggle {
    color: var(--white);
    font-size: 14.5px;
    font-weight: 600;
    transition: opacity 0.2s ease;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .header__dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s ease;
  }
  
  .header.scrolled .header__dropdown-toggle {
    color: #1a1a1a;
    text-shadow: none;
  }

  .white-bg-page .header .header__dropdown-toggle {
    color: #1a1a1a;
    text-shadow: none;
  }

  .header__dropdown-toggle:hover {
    opacity: 0.65;
  }
  
  /* Add invisible bridge to maintain hover state */
  .header__dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 25px;
    z-index: 1000;
    pointer-events: none;
  }
  
  .header__dropdown:hover::before {
    pointer-events: auto;
  }
  
  .header__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    transition-delay: 0s;
    z-index: 1001;
    display: block;
  }
  
  .header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 4px);
    transition-delay: 0.1s;
  }
  
  .header__dropdown:hover .header__dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  .header__dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a !important;
    font-size: 14px;
    font-weight: 500;
    text-shadow: none !important;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .header__dropdown-menu a:hover {
    background: #F8FBFF;
    color: #101D4D !important;
    opacity: 1;
  }
  
  .header__cta {
    padding: 14px 28px;
    font-size: 13.5px;
    font-weight: 700;
    background: #FFFFFF;
    color: #101D4D;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .header__cta--mobile {
    display: none;
  }
  
  .header.scrolled .header__cta--desktop {
    background: #101D4D !important;
    color: #FFFFFF !important;
    border: 2px solid #101D4D !important;
    box-shadow: 0 2px 6px rgba(16, 29, 77, 0.2);
  }

  .white-bg-page .header .header__cta--desktop {
    background: #101D4D !important;
    color: #FFFFFF !important;
    border: 2px solid #101D4D !important;
    box-shadow: 0 2px 6px rgba(16, 29, 77, 0.2);
  }

  .header__cta--desktop:hover {
    background: transparent;
    color: #FFFFFF;
    opacity: 0.95;
  }
  
  .header.scrolled .header__cta--desktop:hover {
    background: transparent !important;
    color: #101D4D !important;
    border: 2px solid #101D4D !important;
    opacity: 1;
  }

  .white-bg-page .header .header__cta--desktop:hover {
    background: transparent !important;
    color: #101D4D !important;
    border: 2px solid #101D4D !important;
    opacity: 1;
  }

  /* Mobile Menu Toggle */
  .header__toggle {
    display: none;
  }
  
  /* Mobile Menu Backdrop */
  .menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .menu-backdrop.active {
    display: block;
    opacity: 1;
  }
  
  /* ========================================
     RESPONSIVE - MOBILE MENU
     ======================================== */
  @media (max-width: 992px) {
    .header__container {
      gap: 16px;
    }
  
    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--primary-blue);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 20px 40px 20px;
      gap: 0;
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 998;
      overflow-y: auto;
    }
  
    .header__nav a {
      color: var(--white) !important;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-shadow: none;
      width: 100%;
      max-width: 400px;
      text-align: center;
      padding: 20px 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.2s ease;
    }
  
    .header__nav > a:first-child {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .header__nav > a:hover,
    .header__dropdown-toggle:hover {
      background: rgba(255, 255, 255, 0.05);
      opacity: 0.85;
    }
  
    /* Mobile Dropdown Styles */
    .header__dropdown {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 400px;
    }
  
    .header__dropdown-toggle {
      color: var(--white) !important;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-shadow: none;
      width: 100%;
      text-align: center;
      padding: 20px 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .header__dropdown-toggle::after {
      position: absolute;
      right: 32px;
    }
  
    .header__dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: rgba(255, 255, 255, 0.05);
      box-shadow: none;
      border-radius: 0;
      padding: 0;
      min-width: 100%;
      max-width: 400px;
    }
  
    .header__dropdown-menu a {
      color: rgba(255, 255, 255, 0.9) !important;
      font-size: 15px;
      padding: 16px 32px 16px 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
  
    .header__dropdown-menu a:hover {
      background: rgba(255, 255, 255, 0.08);
      color: var(--white) !important;
    }
  
    .header__nav.active {
      transform: translateY(0);
    }
  
    .header__toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
      width: 28px;
      height: 20px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 1002;
    }
  
    .header__toggle span {
      width: 28px;
      height: 2px;
      background: #FFFFFF;
      border-radius: 0;
      transition: all 0.3s ease;
      display: block;
      transform-origin: center;
    }
  
    .header__toggle span:nth-child(2) {
      width: 22px;
    }
  
    .header.scrolled .header__toggle span {
      background: #101D4D;
    }

    .white-bg-page .header .header__toggle span {
      background: #101D4D;
    }

    .header__toggle.active {
      justify-content: center;
      align-items: center;
    }
  
    .header__toggle.active span {
      width: 28px;
      position: absolute;
    }
  
    .header__toggle.active span:nth-child(1) {
      transform: rotate(45deg);
    }
  
    .header__toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .header__toggle.active span:nth-child(3) {
      transform: rotate(-45deg);
    }
  
    .header__logo {
      filter: none;
      -webkit-filter: none;
    }
  
    .header.scrolled .header__logo {
      filter: none;
      -webkit-filter: none;
    }
  
    /* Mobile menu open - always show light logo */
    .header.menu-open .header__logo--light {
      display: block !important;
    }

    .header.menu-open .header__logo--dark {
      display: none !important;
    }

    .header.scrolled.menu-open .header__logo--light {
      display: block !important;
    }

    .header.scrolled.menu-open .header__logo--dark {
      display: none !important;
    }
  
    .header.menu-open .header__toggle span {
      background: var(--white) !important;
    }
  
    .header.scrolled.menu-open .header__toggle span {
      background: var(--white) !important;
    }
  
    .header__cta--desktop {
      display: none;
    }
  
    .header__cta--mobile {
      display: block;
      margin: 32px auto 0 auto;
      width: 100%;
      max-width: 400px;
      text-align: center;
      padding: 18px 40px;
      background: var(--white);
      color: var(--primary-blue);
      border: 2px solid var(--white);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.4px;
      border-radius: 6px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      transition: all 0.2s ease;
      white-space: nowrap;
    }
  
    .header__cta--mobile:hover {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 18px 0;
    }
  
    .header.scrolled {
      padding: 16px 0;
    }
  
    .header__logo {
      height: 38px;
    }
  
    .header.scrolled .header__logo {
      height: 32px;
    }
  
    .header__nav {
      padding: 70px 20px 30px 20px;
    }
  
    .header__nav a {
      font-size: 16px;
      padding: 18px 24px;
      max-width: 100%;
    }
  
    .header__cta--mobile {
      margin-top: 28px;
      max-width: 100%;
      padding: 16px 32px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .header__logo {
      height: 34px;
    }
  
    .header.scrolled .header__logo {
      height: 30px;
    }
  
    .header__toggle {
      width: 26px;
      height: 19px;
    }
  
    .header__toggle span {
      width: 26px;
    }
  
    .header__toggle span:nth-child(2) {
      width: 20px;
    }
  
    .header__toggle.active span {
      width: 26px;
    }
  }
  
  
  /* ========================================
     HERO
     ======================================== */
  /* ========================================
     HERO SECTIONS
     ======================================== */
  
  /* Full-Screen Hero (Homepage) */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 200px 0 180px;
    color: var(--white);
    overflow: hidden;
  }
  
  .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #101D4D;
    z-index: 0;
  }
  
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    position: relative;
    z-index: 1;
  }
  
  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
    rgba(16, 29, 77, 0.85) 0%,
    rgba(16, 29, 77, 0.75) 50%,
    rgba(16, 29, 77, 0.9) 100%); 
    z-index: 2;
  }
  
  .hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
  }
  
  .hero__wave svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .hero__container {
    position: relative;
    z-index: 4;
    text-align: center;
  }
  
  .hero__content {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
  }
  
  .hero__subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
  }

  .hero__headline {
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    color: var(--white);
    letter-spacing: -1px;
  }

  .hero__quote {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: clamp(36px, 7vw, 82px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 36px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__title-large {
    display: inline-block;
    white-space: nowrap;
    color: var(--white);
  }

  .hero__title-regular {
    display: inline-block;
    font-size: clamp(30px, 5.2vw, 62px);
    font-weight: 400;
    opacity: 0.96;
    white-space: nowrap;
    margin-top: 6px;
  }
  
  .hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
  
  .hero__actions .btn {
    min-width: 200px;
    padding: 20px 48px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .hero__actions .btn--primary {
    background: var(--white);
    border: 2px solid var(--white);
  }
  
  .hero__actions .btn--primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  
  .hero__actions .btn--secondary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }
  
  .hero__actions .btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  /* Page Hero (Inner Pages) */
  .page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #101D4D 0%, #212F5C 100%);
    color: #FFFFFF;
    text-align: center;
    position: relative;
  }
  
  .page-hero__title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
  }
  
  .page-hero__description {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    padding: 24px 0;
    font-size: 14px;
  }
  
  .breadcrumbs ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
  }
  
  .breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .breadcrumbs a {
    color: #7391C9;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumbs a:hover {
    color: #101D4D;
  }
  
  .breadcrumbs span {
    color: rgba(0, 0, 0, 0.6);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      padding: 100px 0 120px;
      min-height: 600px;
    }
  
    .hero__content {
      margin: 0 auto 60px;
      padding: 0 20px;
    }
  
    .hero__headline {
      font-size: 36px;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .hero__quote {
      font-size: 18px;
      margin-bottom: 32px;
    }

    .hero__title {
      font-size: 32px;
      margin-bottom: 28px;
      line-height: 1.2;
    }

    .hero__title-regular {
      font-size: 26px;
      margin-top: 4px;
    }

    .hero__actions {
      flex-direction: column;
    }
  
    .hero__actions .btn {
      width: 100%;
    }
  
    .page-hero {
      padding: 140px 0 60px;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 90px 0 100px;
    }

    .hero__content {
      padding: 0 16px;
      margin: 0 auto 50px;
    }

    .hero__headline {
      font-size: 28px;
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }

    .hero__quote {
      font-size: 16px;
      margin-bottom: 28px;
    }

    .hero__title {
      font-size: 28px;
      margin-bottom: 24px;
      line-height: 1.25;
    }

    .hero__title-regular {
      font-size: 23px;
    }
  }
  
  @media (max-width: 380px) {
    .hero__content {
      padding: 0 16px;
    }
  
    .hero__title {
      font-size: 24px;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .hero__title-large {
      white-space: nowrap;
      letter-spacing: -0.3px;
    }
  
    .hero__title-regular {
      white-space: nowrap;
      font-size: 20px;
      letter-spacing: -0.3px;
    }
  }
  
  
  /* ========================================
     HELPERS
     ======================================== */
  /* ========================================
     UTILITY CLASSES
     ======================================== */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  
  /* ========================================
     MAIN
     ======================================== */
  /* ========================================
     SIMPLE DISTRIBUTION - MAIN STYLESHEET
     Modular CSS Architecture
     ======================================== */
  
  /* Base Styles */
  @import url('variables.css');
  @import url('base.css');
  
  /* Layout */
  @import url('layout/containers.css');
  
  /* Components */
  @import url('components/buttons.css');
  @import url('components/header.css');
  @import url('components/footer.css');
  @import url('components/hero.css');
  @import url('components/forms.css');
  @import url('components/cards.css');
  
  /* Utilities */
  @import url('utilities/helpers.css');
  
  /* ========================================
     SECTIONS - Specific to homepage
     Will be moved to page-specific CSS later
     ======================================== */
  
  /* Team Intro Section */
  .team-intro {
    padding: 160px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    position: relative;
  }
  
  .team-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(115,145,201,0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .team-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }
  
  .team-intro__content h2 {
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: #000000;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
  }
  
  .team-intro__content p {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 28px;
    font-weight: 400;
  }
  
  .team-intro__content .btn {
    margin-top: 20px;
    padding: 20px 50px;
  }
  
  .team-intro__image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    will-change: transform, box-shadow;
    transform: translateZ(0);
  }
  
  .team-intro__image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.16);
  }
  
  .team-intro__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Services Section */
  .services {
    padding: 160px 0;
    margin: 0;
    position: relative;
    width: 100%;
    background: linear-gradient(
      to right,
      #101D4D 0%,
      #101D4D 75%,
      #7391C9 75%,
      #7391C9 100%
    );
    overflow: hidden;
  }
  
  .services__grid {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  
  @media (max-width: 1100px) {
    .services__grid {
      grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    }
  }
  
  .services__culture {
    color: var(--white);
    padding-right: 20px;
    position: relative;
  }
  
  .services__culture h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  
  .services__culture-text {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 450px;
    font-weight: 400;
  }
  
  .services__list {
    position: relative;
    padding-left: 35px;
    list-style: none;
  }
  
  .services__list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .services__list::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 25%;
    background: #4a3aff;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(calc(var(--active-index, 0) * 100%));
    transform-origin: top;
  }
  
  .services__list li {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 36px;
    line-height: 1.3;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
  }
  
  .services__list li:hover {
    opacity: 1;
  }
  
  .services__list li:last-child {
    margin-bottom: 0;
  }
  
  .services__list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
  }
  
  .services__list li a.active {
    color: #ffffff;
    font-weight: 700;
  }
  
  .services__list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s ease;
  }
  
  .services__list li a:hover::after,
  .services__list li a.active::after {
    width: 100%;
  }
  
  .services__list li a:hover {
    color: #ffffff;
  }
  
  .services__list li a:focus {
    outline: none;
  }
  
  .services__consulting {
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .services__consulting-content {
    display: none;
    animation: fadeEffect 0.5s;
  }
  
  .services__consulting-content.active {
    display: block;
  }
  
  @keyframes fadeEffect {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  /* Card Header with Accent Bar */
  .card-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .header-accent {
    width: 4px;
    background-color: #4a3aff;
    flex-shrink: 0;
    align-self: stretch;
  }
  
  .card-header h3,
  .services__consulting h3 {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
  }
  
  .services__consulting p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
    font-weight: 400;
  }
  
  /* Problems Title */
  .services__problems h4,
  .problems-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
  }
  
  /* Problems Grid */
  .services__problems ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-bottom: 40px;
    list-style: none;
    padding-left: 0;
  }
  
  .services__problems li {
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 0;
  }
  
  .services__problems li::before {
    content: '→';
    color: #1a1a1a;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .services__actions {
    display: flex;
    gap: 15px;
    margin-top: 28px;
  }
  
  .services__actions .btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
  }
  
  .services__actions .btn--dark {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #1a1a1a;
  }
  
  .services__actions .btn--outline-dark {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #ccc;
  }
  
  /* Mobile Navigation */
  .services__mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .services__mobile-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.5);
    flex: 1;
    text-align: center;
  }
  
  .services__mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: var(--white);
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .services__mobile-nav-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
  }
  
  .services__mobile-nav-btn:active {
    transform: scale(0.95);
  }
  
  .services__mobile-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* Team Members */
  .team-members {
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .team-members .container {
    max-width: 100%;
    padding: 0;
  }
  
  .team-members h2 {
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: #000000;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    padding: 0 40px;
  }
  
  .team-members__intro {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 1100px;
    margin: 0 auto 80px;
    font-weight: 400;
    padding: 0 40px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  /* Photo Gallery */
  .photo-gallery {
    padding: 60px 0 180px;
    overflow: hidden;
    width: 100%;
  }
  
  .photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: calc(100% + 80px);
    margin: 0 -40px;
    padding: 0;
  }
  
  .photo-gallery__item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  
  .photo-gallery__item:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .photo-gallery__item:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .photo-gallery__item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
  }
  
  .photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .photo-gallery__item:hover img {
    transform: scale(1.02);
  }
  
  /* Contact Section */
  .contact {
    position: relative;
    background: linear-gradient(to right, #6B85B9 0%, #6B85B9 30%, #212F5C 30%, #212F5C 100%);
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Instrument Sans', sans-serif;
  }
  
  /* Background image on the right side */
  .contact__bg-pattern {
    position: absolute;
    top: 0;
    left: 30%;
    right: 0;
    bottom: 0;
    background-image: url('https://res.cloudinary.com/dfpg7wqyu/image/upload/w_1440,c_limit,f_auto,q_auto:good/v1762657922/c7cea1b7-afb3-4800-baf3-c7a3db6f9f37_nq6s3b.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
  }
  
  .contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }
  
  /* --- Left: Form Card --- */
  .contact__card {
    background: #fff;
    padding: 40px;
    width: 100%;
    max-width: 750px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    margin-left: -80px;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  
  /* --- Right: Text Content --- */
  .contact__content {
    flex: 1;
    color: #fff;
    max-width: 500px;
    padding-right: 20px;
  }
  
  .contact__content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  .contact__content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
    color: #E0E6F5;
  }
  
  /* Resources */
  .resources {
    padding: 160px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 50%, #FFFFFF 100%);
  }
  
  .resources h2 {
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
  }
  
  .resources__intro {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 72px;
    font-weight: 400;
  }
  
  .resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .team-grid {
      grid-template-columns: repeat(3, 1fr);
      padding: 0 40px;
    }
  
    .services__consulting {
      padding: 50px 40px;
    }
  
    .contact {
      background: linear-gradient(to bottom, #212F5C 0%, #212F5C 50%, #6B85B9 50%, #6B85B9 100%);
      padding: 60px 0;
    }
  
    .contact__bg-pattern {
      left: 0;
      opacity: 0.05;
    }
  
    .contact__container {
      flex-direction: column;
      gap: 60px;
      padding: 0 40px;
    }
  
    .contact__card {
      margin-left: 0;
      max-width: 100%;
      order: 2;
    }
  
    .contact__content {
      text-align: center;
      max-width: 100%;
      padding-right: 0;
      order: 1;
    }
  
    .contact__grid {
      grid-template-columns: 1fr;
      display: flex;
      flex-direction: column;
    }
  
    .contact__cta-section {
      order: 1;
    }
  
    .contact__form-section {
      order: 2;
    }
  
    .contact__form-section {
      justify-content: center;
      padding: 70px 40px;
    }
  
    .contact__cta-section {
      padding: 70px 40px;
      justify-content: center;
    }
  
    .contact__form-inner,
    .contact__cta-inner {
      max-width: 700px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 992px) {
    .team-intro__grid {
      grid-template-columns: 1fr;
    }
  
    .photo-gallery {
      display: none;
    }
  
    /* Services Section Mobile */
    .services {
      background: linear-gradient(
        to bottom,
        #101D4D 0%,
        #101D4D 40%,
        #7391C9 40%,
        #7391C9 100%
      );
      min-height: auto;
      padding: 60px 0;
    }
  
    .services__grid {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 20px;
    }
  
    .services__culture {
      text-align: center;
      padding-right: 0;
    }
  
    .services__culture-text {
      margin: 0 auto 40px auto;
    }
  
    .services__list {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }
  
    .services__list li a {
      padding-left: 0;
      padding-bottom: 8px;
      border-left: none;
      border-bottom: 2px solid transparent;
    }
  
    .services__list li a.active,
    .services__list li a:hover {
      padding-left: 0;
      padding-bottom: 8px;
      border-left: none;
    }
  
    .services__consulting {
      padding: 40px 30px;
      min-height: auto;
    }
  
    .services__mobile-header {
      display: flex;
    }
  
    .services__actions {
      flex-direction: column;
    }
  
    .services__actions .btn {
      width: 100%;
    }
  
    .services__problems ul {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .team-intro,
    .team-members,
    .resources {
      padding: 60px 0;
    }
  
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 0 30px;
    }
  
    .services__consulting {
      padding: 30px 20px;
    }
  
    .contact {
      padding: 40px 0;
    }
  
    .contact__container {
      padding: 0 20px;
      gap: 40px;
    }
  
    .contact__card {
      padding: 30px 24px;
      order: 2;
    }
  
    .contact__content {
      order: 1;
    }
  
    .contact__content h2 {
      font-size: clamp(32px, 8vw, 40px);
      margin-bottom: 16px;
    }
  
    .contact__content p {
      font-size: 15px;
      margin-bottom: 16px;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
  
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 16px 18px;
      font-size: 16px;
    }
  
    .form-group select {
      background-position: right 16px center;
      padding-right: 40px;
    }
  
    .form-group select:focus,
    .form-group select:active {
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 12px 8px;
    }
  
    .contact-form .btn {
      padding: 18px 32px;
      font-size: 16px;
    }
  
    .contact__form-wrapper {
      padding: 50px 30px;
    }
  
    .contact__form-section,
    .contact__cta-section {
      padding: 60px 20px;
    }
  
    .resources__grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .team-grid {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }
  
    .services__consulting {
      padding: 30px 20px;
    }
  
    .contact {
      padding: 30px 0;
    }
  
    .contact__container {
      padding: 0 16px;
      gap: 30px;
    }
  
    .contact__card {
      padding: 24px 20px;
      order: 2;
    }
  
    .contact__content {
      order: 1;
    }
  
    .contact__content h2 {
      font-size: clamp(28px, 9vw, 36px);
      margin-bottom: 12px;
      line-height: 1.2;
    }
  
    .contact__content p {
      font-size: 14px;
      margin-bottom: 12px;
    }
  
    .form-grid {
      gap: 16px;
    }
  
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 16px;
      font-size: 16px;
    }
  
    .form-group select {
      background-position: right 14px center;
      padding-right: 38px;
    }
  
    .form-group select:focus,
    .form-group select:active {
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 12px 8px;
    }
  
    .contact-form .btn {
      padding: 16px 28px;
      font-size: 15px;
    }
  
    .contact__form-wrapper {
      padding: 40px 24px;
    }
  }
  
  