/* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Manrope";
    line-height: 1.6;
    color: #111;
    background: #fff;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* Header Base */
  .site-header {
    background: #000;
    color: #fff;
    padding: 25px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Flexbox container */
  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
  }

  /* Logo + Landscape Label */
  .logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    height: 28px;
  }

  .logo span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* Separator */
  .separator {
    width: 1px;
    height: 24px;
    background-color: #333;
  }

  .landscape-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 29px;
    color: #fff;
    letter-spacing: 16%;
  }

  /* Nav Menu */
  .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    letter-spacing: 12%;
    transition: color 0.3s ease;
  }

  .nav-menu a.active {
    color: #fff;
  }

  .nav-menu a:hover {
    color: #fff;
  }

  /* Contact Button */
  .contact-button {
    border: 2px solid #fff;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.3s ease;
  }

  .contact-button:hover {
    background: #fff;
    color: #000;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    touch-action: manipulation; /* Improve touch handling */
  }

  .mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .nav-menu ul {
      gap: 24px;
    }
  }

  @media (max-width: 768px) {
    .site-header {
      height: auto;
      padding: 15px;
      position: fixed;
      width: 100%;
    }
    
    .header-container {
      padding: 10px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .logo-section {
      width: 100%;
      justify-content: center;
      margin-bottom: 0;
      padding-right: 50px; /* Make space for the toggle button */
    }
    
    .mobile-menu-toggle {
      display: flex;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1001;
    }
    
    .nav-menu {
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      margin: 0;
      display: none;
    }
    
    .nav-menu.active {
      display: block;
      max-height: 200px;
    }
    
    .nav-menu ul {
      flex-direction: column;
      gap: 10px;
      padding: 10px 0;
    }
    
    .header-cta {
      display: none;
      width: 100%;
      text-align: center;
      max-height: 0;
      transition: max-height 0.3s ease;
      margin: 0;
      overflow: hidden;
    }
    
    .header-cta.active {
      display: block;
      max-height: 50px;
      margin-top: 10px;
      margin-bottom: 10px;
      overflow: visible;
    }
  }

  /* Hero Section */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 90vh;
  }
  
  .hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    width: 100%;
  }

  @media (max-width: 768px) {
    .hero {
      margin-top: 19%;
      height: 100vh;
    }
    
    .hero-container {
      flex-direction: column-reverse;
      padding: 2rem 1rem;
    }
  }

  .hero-text {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
  }

  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 49px;
    font-weight: 700;
    font-style: bold;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #111;
  }

  .hero-text p {
    margin-bottom: 2rem;
    color: #2C2955;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .hero-text {
      max-width: 100%;
      padding-right: 0;
      text-align: center;
      margin-top: 2rem;
    }
    
    .hero-text h1 {
      font-size: 32px;
      line-height: 1.4;
    }
    
    .hero-text p {
      font-size: 18px;
      line-height: 1.5;
    }
  }

  .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .btn-group a {
    display: inline-block;
    padding: 0.9rem 0.9rem;
    border: 1px solid #1E41EB;
    color: #1E41EB;
    font-weight: 600;
    font-size: 28px;
    line-height: 26px;
    transition: 0.3s;
  }
  
  @media (max-width: 768px) {
    .btn-group {
      justify-content: center;
    }
    
    .btn-group a {
      font-size: 20px;
      padding: 0.7rem 0.7rem;
    }
  }

  .btn-group a:hover {
    background: #1E41EB;
    color: #fff;
  }

  .hero-image {
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
  }

  .hero-image img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .hero-image {
      max-width: 100%;
      padding-left: 0;
      margin-bottom: 1rem;
    }
    
    .hero-image img {
      width: 80%;
      max-width: 300px;
    }
  }

  /* Key Findings Cards - 3 Column Layout */
  section.findings {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(50.27% 39.47% at 50% 0%, rgba(30, 65, 235, 0.1) 0%, rgba(30, 65, 235, 0) 100%);
  }

  .findings h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 67px;
    font-weight: 700;
  }

  .key-findings-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
  }

  @media (max-width: 992px) {
    .key-findings-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .key-findings-cards {
      grid-template-columns: 1fr;
    }
  }

  .key-findings-card {
    border: 1px solid #3559DD;
    padding: 2rem;
    background: rgba(30, 65, 235, 0.05);
    text-align: center;
  }

  .key-findings-card h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .key-findings-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
  }

  .key-findings-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    margin: 0 auto;
  }

  .icon-circle img {
    width: 30px;
    height: 30px;
  }

  /* Methodology Section */
  .methodology {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(#1E41EB1A, #002CFF00);
  }

  .methodology h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6b5fb5;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .methodology h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }

  .method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .method-card {
    border: 1px solid #e5e7eb;
    padding: 2rem 1.5rem;
    background:rgba(30, 65, 235, 0.05);
    text-align: center;
    transition: box-shadow 0.3s ease;
  }

  .method-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .method-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4a4a8a;
    margin-bottom: 0.75rem;
  }

  .method-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1.5rem;
  }

  .learn-btn {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    font-style: semibold;
    color: #1E41EB;
    border: 1px solid #1E41EB;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
  }

  .learn-btn:hover {
    background: #1E41EB;
    color: #fff;
  }

  /* CTA Section Background */
  #cta {
    background: radial-gradient(50.27% 39.47% at 50% 0%, rgba(30, 65, 235, 0.1) 0%, rgba(30, 65, 235, 0) 100%);
    padding: 80px 20px;
  }
  
  /* CTA Container */
  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* mobile first */
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .cta-container {
      flex-direction: row; /* side by side on desktop */
      align-items: center;
      justify-content: center;
    }
  }
  
  /* Illustration */
  .cta-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cta-illustration img {
    max-width: 320px;
    width: 100%;
  }
  
  /* Text Section */
  .cta-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  @media (min-width: 768px) {
    .cta-text {
      max-width: 500px;
    }
    
    .cta-text h2 {
      font-family: 'Playfair Display', serif;
      text-align: left;
    }
    
    .cta-text p {
      text-align: left;
    }
    
    .cta-text .cta-button {
      margin: 0;
    }
  }
  
  .cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  /* Button */
  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid rgba(30, 65, 235, 1);
    color:rgba(30, 65, 235, 1);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
  }
  
  .cta-button:hover {
    background: rgba(30, 65, 235, 1);
    color: #fff;
  }

  /* Footer */
  .footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-logo img {
    height: 32px;
    margin-bottom: 16px;
  }

  .footer p {
    font-size: 0.875rem;
    color: #aaa;
  }