    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
      
      /* Factor colors */
      --social: #4e54c8;
      --economic: #3db3a2;
      --habits: #fd7e14;
      --treatment: #dc3545;
      --environment: #28a745;
      --culture: #6f42c1;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    /* Hero Section */
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .hero:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: url('/api/placeholder/1200/800') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    
    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .hero-cta {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .btn-hero {
      padding: 14px 28px;
      font-size: 16px;
    }
    
    .btn-light {
      background-color: var(--white);
      color: var(--primary);
    }
    
    .btn-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }
    
    /* Slideshow */
    .slideshow {
      position: relative;
      height: 400px;
      width: 100%;
    }
    
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .slide.active {
      opacity: 1;
    }
    
    .slide-indicators {
      position: absolute;
      bottom: -120px;
      left: 90%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }
    
    .indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .indicator.active {
      background-color: white;
    }
    
    /* 6 Factors Introduction Section */
    .factors-intro {
      padding: 80px 0;
      background-color: var(--white);
      text-align: center;
    }
    
    .section-title {
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-title p {
      font-size: 18px;
      color: var(--text-light);
      margin: 0 auto;
    }
    
    .factors-wheel {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
    }
    
    .wheel-image {
      width: 500px;
      height: 500px;
      position: relative;
      background: url('/api/placeholder/500/500');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .wheel-description {
      text-align: center;
    }
    
    /* 6 Factors Detail Section */
    .factors-section {
      padding: 80px 0;
      background-color: var(--background);
    }
    
    .factors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .factor-card {
      background-color: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    
    .factor-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .factor-header {
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .factor-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--white);
      flex-shrink: 0;
    }
    
    .factor-title {
      flex: 1;
    }
    
    .factor-title h3 {
      font-size: 22px;
      margin-bottom: 5px;
    }
    
    .factor-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .factor-description {
      margin-bottom: 20px;
      flex: 1;
    }
    
    .factor-metrics {
      display: flex;
      justify-content: space-between;
      margin-top: auto;
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 15px;
    }
    
    .metric {
      text-align: center;
    }
    
    .metric-value {
      font-size: 24px;
      font-weight: bold;
      color: var(--primary);
    }
    
    .metric-label {
      font-size: 14px;
      color: var(--text-light);
    }
    
    /* Business Impact Section */
    .business-impact {
      padding: 80px 0;
      background-color: var(--white);
    }
    
    .impact-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .stat-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 30px;
      text-align: center;
    }
    
    .stat-value {
      font-size: 48px;
      font-weight: bold;
      background: var(--gradient);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
    }
    
    .stat-description {
      font-size: 16px;
      color: var(--text-dark);
    }
    
    /* How It Works Section */
    .how-it-works {
      padding: 80px 0;
      background-color: var(--background);
    }
    
    .steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 50px;
      position: relative;
    }
    
    .steps:after {
      content: '';
      position: absolute;
      top: 40px;
      left: 80px;
      right: 80px;
      height: 2px;
      background: var(--primary-light);
      z-index: 1;
    }
    
    .step {
      flex: 1;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 2;
      min-width: 200px;
    }
    
    .step-number {
      width: 80px;
      height: 80px;
      background: var(--gradient);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: bold;
      margin: 0 auto 20px;
    }
    
    .step h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    /* Testimonials Section */
    .testimonials {
      padding: 80px 0;
      background-color: var(--white);
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .testimonial-card {
      background-color: var(--background);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .testimonial-content {
      flex: 1;
    }
    
    .testimonial-text {
      margin-bottom: 20px;
      position: relative;
      padding-left: 25px;
    }
    
    .testimonial-text:before {
      content: '"';
      position: absolute;
      left: 0;
      top: 0;
      font-size: 36px;
      line-height: 1;
      color: var(--primary-light);
      font-family: Georgia, serif;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary-light);
      margin-right: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: bold;
      font-size: 20px;
    }
    
    .author-info h4 {
      font-size: 18px;
      margin-bottom: 5px;
    }
    
    .author-info p {
      color: var(--text-light);
      font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--gradient);
      color: var(--white);
      text-align: center;
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--white);
    }

    .cta-section p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--white);
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Factor Colors */
    .social-color {
      background-color: var(--social);
    }
    
    .economic-color {
      background-color: var(--economic);
    }
    
    .habits-color {
      background-color: var(--habits);
    }
    
    .treatment-color {
      background-color: var(--treatment);
    }
    
    .environment-color {
      background-color: var(--environment);
    }
    
    .culture-color {
      background-color: var(--culture);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .nav-menu-wrapper {
        display: flex;
        width: 100%;
        justify-content: flex-end;
      }
      
      .wheel-image {
        width: 350px;
        height: 350px;
      }
      
      .steps {
        flex-direction: column;
        gap: 40px;
      }
      
      .steps:after {
        display: none;
      }
	  .slide-indicators{
		    bottom: -176px;
			left: 47%;
	  }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 36px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .wheel-image {
        width: 300px;
        height: 300px;
      }
      
      .factor-metrics {
        flex-direction: column;
        gap: 15px;
      }
      
      /* Hexagon grid responsive - 3 columns on tablet */
      .hexagon-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 12px;
        max-width: 700px;
      }
      
      .hexagon-grid > div:nth-child(3n+2) {
        transform: translateY(20px);
      }
    }
    
    @media (max-width: 576px) {
      .nav-links, .cta-buttons {
        flex-direction: column;
        width: 100%;
      }
      
      .btn {
        width: 100%;
        text-align: center;
      }
      
      .hero-cta {
        flex-direction: column;
      }
      
      .hero-cta .btn {
        width: 100%;
      }
      
      /* Keep 3 columns for hexagon grid on small mobile */
      .hexagon-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 8px;
        max-width: 500px;
      }
      
      .hexagon-content {
        padding: 8%;
      }
      
      .hexagon-content h3 {
        font-size: 0.8rem;
        margin-bottom: 3px;
      }
      
      .hexagon-content p {
        font-size: 0.6rem;
        line-height: 1.2;
      }
      
      .hexagon-icon {
        font-size: 1.2rem;
        margin-bottom: 3px;
      }
      
      .wheel-image {
        width: 250px;
        height: 250px;
      }
      
      .stat-value {
        font-size: 36px;
      }
      
      .impact-stats {
        grid-template-columns: 1fr;
      }
    }

    /* Hexagon Grid Layout for 6 Factors */
    .hexagon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 20px;
      margin: 50px auto;
      max-width: 900px;
    }

    .hexagon-grid > div:nth-child(3n+2) {
      transform: translateY(40px);
    }

    .hexagon {
      position: relative;
      width: 100%;
      padding-bottom: 115%; /* Creates aspect ratio */
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      transition: transform 0.3s ease;
    }

    .hexagon:hover {
      transform: scale(1.05);
    }

    .hexagon-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 15%;
      color: white;
    }

    .hexagon-icon {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .hexagon h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .hexagon p {
      font-size: 12px;
      line-height: 1.3;
      display: none;
    }

    .hexagon:hover p {
      display: block;
    }

    @media (min-width: 768px) {
      .hexagon h3 {
        font-size: 22px;
      }
      
      .hexagon p {
        font-size: 14px;
      }
    }
    
    /* Language Selector */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .language-toggle {
      display: flex;
      background-color: rgba(244, 246, 248, 0.9);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid rgba(224, 224, 224, 0.5);
    }

    .language-option {
      padding: 6px 12px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
      background: transparent;
      border: none;
    }

    .language-option.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .language-option:hover:not(.active) {
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
    }

    .detection-info {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: rgba(0, 0, 0, 0.8);
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 0.9em;
      opacity: 0.8;
      color: white;
      z-index: 1000;
      transition: opacity 0.3s ease;
    }

    .detection-info.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Responsive language selector */
    @media (max-width: 992px) {
      .language-selector {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        margin-bottom: 0;
        justify-content: center;
        z-index: 1000;
        border: none;
        box-shadow: none;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      
      /* Factor colors */
      --social: #4e54c8;
      --economic: #3db3a2;
      --habits: #fd7e14;
      --treatment: #dc3545;
      --environment: #28a745;
      --culture: #6f42c1;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Page Banner */
    .page-banner {
      padding-top: 120px;
      padding-bottom: 60px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
    }
    
    .page-banner:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/api/placeholder/1200/400') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
    }
    
    .banner-content {
      position: relative;
      z-index: 2;
    }
    
    .page-banner h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    
    .page-banner p {
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 0;
      opacity: 0.9;
    }
    
    /* Section Styles */
    .section {
      padding: 80px 0;
    }
    
    .section:nth-child(odd) {
      background-color: var(--white);
    }
    
    .section:nth-child(even) {
      background-color: var(--background);
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-header h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-header p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Company Mission Section */
    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .mission-image {
      height: 400px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .mission-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mission-content h3 {
      font-size: 28px;
      margin-bottom: 20px;
      color: var(--primary);
    }
    
    .mission-content p {
      margin-bottom: 20px;
    }
    
    .mission-statement {
      font-size: 20px;
      color: var(--primary);
      padding: 20px;
      border-left: 4px solid var(--primary-light);
      margin: 30px 0;
      background-color: rgba(31, 162, 255, 0.05);
    }
    
    /* Values Section */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .value-card {
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 30px;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .section:nth-child(even) .value-card {
      background-color: var(--white);
    }
    
    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .value-icon {
      font-size: 48px;
      margin-bottom: 20px;
      color: var(--primary-light);
    }
    
    .value-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .value-card p {
      margin-bottom: 0;
      flex: 1;
    }
    
    /* Leadership Team */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .team-member {
      background-color: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .team-member {
      background-color: var(--white);
    }
    
    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .member-image {
      height: 300px;
      position: relative;
      overflow: hidden;
    }
    
    .member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .member-info {
      padding: 20px;
    }
    
    .member-info h3 {
      font-size: 22px;
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .member-title {
      font-size: 16px;
      color: var(--primary-light);
      margin-bottom: 15px;
    }
    
    .member-bio {
      margin-bottom: 15px;
    }
    
    .member-social {
      display: flex;
      gap: 10px;
    }
    
    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: var(--primary-light);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background-color: var(--primary);
    }
    
    /* Company History */
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 60px auto 0;
    }
    
    .timeline:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: var(--primary-light);
      transform: translateX(-50%);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 60px;
      width: 100%;
    }
    
    .timeline-item:last-child {
      margin-bottom: 0;
    }
    
    .timeline-content {
      position: relative;
      width: 45%;
      padding: 25px;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(even) .timeline-content {
      background-color: var(--white);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
      left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
      left: 55%;
    }
    
    .timeline-content:before {
      content: '';
      position: absolute;
      top: 20px;
      width: 16px;
      height: 16px;
      background-color: var(--white);
      transform: rotate(45deg);
      box-shadow: var(--shadow);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before {
      right: -8px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:before {
      left: -8px;
    }
    
    .timeline-year {
      position: absolute;
      top: 10px;
      width: 120px;
      padding: 8px 0;
      background: var(--gradient);
      color: var(--white);
      border-radius: 20px;
      text-align: center;
      font-weight: bold;
      box-shadow: var(--shadow);
      z-index: 10;
    }
    
    .timeline-item:nth-child(odd) .timeline-year {
      right: -60px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
      left: -60px;
    }
    
    .timeline-content h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--primary);
      padding-top: 15px;
    }
    
    .timeline-content p {
      margin-bottom: 0;
    }
    
    /* Achievements Section */
    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: center;
    }
    
    .achievement-item {
      padding: 30px;
      border-radius: var(--radius);
      background-color: var(--white);
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .achievement-item {
      background-color: var(--white);
    }
    
    .achievement-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .achievement-icon {
      font-size: 36px;
      margin-bottom: 15px;
      color: var(--primary-light);
    }
    
    .achievement-value {
      font-size: 36px;
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    .achievement-label {
      font-size: 16px;
      color: var(--text-light);
    }
    
    /* Partners Section */
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .partner-item {
      height: 120px;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .partner-item {
      background-color: var(--white);
    }
    
    .partner-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .partner-logo {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }
    
    /* Recognition & Media */
    .recognition-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .award-item {
      padding: 25px;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .award-item {
      background-color: var(--white);
    }
    
    .award-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .award-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      flex-shrink: 0;
    }
    
    .award-info h3 {
      font-size: 18px;
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .award-info p {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 0;
    }
    
    /* Media Section */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .media-item {
      padding: 25px;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .media-item {
      background-color: var(--white);
    }
    
    .media-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .media-source {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }
    
    .media-logo {
      width: 100px;
      height: 40px;
      object-fit: contain;
    }
    
    .media-date {
      font-size: 14px;
      color: var(--text-light);
    }
    
    .media-title {
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .media-excerpt {
      font-size: 15px;
      margin-bottom: 15px;
    }
    
    /* Careers Section */
    .careers-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-top: 40px;
    }
    
    .careers-image {
      height: 400px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .careers-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .careers-info h3 {
      font-size: 28px;
      margin-bottom: 20px;
      color: var(--primary);
    }
    
    .careers-info p {
      margin-bottom: 20px;
    }
    
    .benefits-list {
      margin: 30px 0;
    }
    
    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 15px;
    }
    
    .benefit-icon {
      width: 24px;
      height: 24px;
      background-color: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 12px;
      flex-shrink: 0;
    }
    
    .open-positions {
      margin-top: 30px;
    }
    
    .open-positions h4 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .positions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }
    
    .position-card {
      padding: 20px;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(even) .position-card {
      background-color: var(--white);
    }
    
    .position-title {
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .position-location {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--gradient);
      color: var(--white);
      text-align: center;
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--white);
    }

    .cta-section p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--white);
    }
    
    .btn-light {
      background-color: var(--white);
      color: var(--primary);
      padding: 14px 28px;
      font-size: 16px;
    }
    
    .btn-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .nav-menu-wrapper {
        display: flex;
        width: 100%;
        justify-content: flex-end;
      }
      
      .mission-grid,
      .careers-content {
        grid-template-columns: 1fr;
      }
      
      .mission-image,
      .careers-image {
        height: 300px;
        order: -1;
      }
      
      .timeline:before {
        left: 20px;
      }
      
      .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
      }
      
      .timeline-content:before {
        left: -8px !important;
      }
      
      .timeline-year {
        left: -40px !important;
        width: 80px;
        font-size: 14px;
      }
    }
    
    @media (max-width: 768px) {
      .page-banner h1 {
        font-size: 32px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .member-image {
        height: 250px;
      }
      
      .positions-list {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 576px) {
      .recognition-grid,
      .media-grid {
        grid-template-columns: 1fr;
      }
      
      .member-image {
        height: 200px;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
      
      /* Factor colors */
      --social: #4e54c8;
      --economic: #3db3a2;
      --habits: #fd7e14;
      --treatment: #dc3545;
      --environment: #28a745;
      --culture: #6f42c1;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      position: relative;
    }
    
    .logo {
      height: 40px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Page Banner */
    .page-banner {
      padding-top: 120px;
      padding-bottom: 60px;
      background: var(--gradient);
      color: var(--white);
    }
    
    .page-banner h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    
    .page-banner p {
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 0;
      opacity: 0.9;
    }
    
    /* Section Styles */
    .section {
      padding: 80px 0;
    }
    
    .section:nth-child(odd) {
      background-color: var(--white);
    }
    
    .section:nth-child(even) {
      background-color: var(--background);
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-header h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-header p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* 6 Factors Overview */
    .factors-overview {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
    }
    
    .factor-overview-card {
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      width: 100%;
      max-width: 350px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .factor-overview-card {
      background-color: var(--white);
    }
    
    .factor-overview-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    
    .factor-overview-header {
      padding: 30px 20px;
      text-align: center;
      position: relative;
      z-index: 1;
      color: var(--white);
    }
    
    .factor-overview-header:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      opacity: 0.9;
    }
    
    .social-header:before {
      background-color: var(--social);
    }
    
    .economic-header:before {
      background-color: var(--economic);
    }
    
    .habits-header:before {
      background-color: var(--habits);
    }
    
    .treatment-header:before {
      background-color: var(--treatment);
    }
    
    .environment-header:before {
      background-color: var(--environment);
    }
    
    .culture-header:before {
      background-color: var(--culture);
    }
    
    .factor-overview-icon {
      font-size: 48px;
      margin-bottom: 15px;
    }
    
    .factor-overview-title h3 {
      font-size: 24px;
      margin-bottom: 5px;
    }
    
    .factor-overview-content {
      padding: 20px;
    }
    
    .factor-overview-content p {
      margin-bottom: 15px;
    }
    
    .factor-overview-list {
      margin-top: 15px;
    }
    
    .factor-overview-list li {
      padding-left: 25px;
      position: relative;
      margin-bottom: 10px;
    }
    
    .factor-overview-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--primary-light);
      font-weight: bold;
    }
    
    /* Detailed Factor Sections */
    .factor-detail {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
      margin: 80px 0;
    }
    
    .factor-detail:nth-child(even) {
      flex-direction: row-reverse;
    }
    
    .factor-detail-content {
      flex: 1;
      min-width: 300px;
    }
    
    .factor-detail-content h3 {
      font-size: 30px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .factor-detail-content h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
    }
    
    .social-color h3:after {
      background-color: var(--social);
    }
    
    .economic-color h3:after {
      background-color: var(--economic);
    }
    
    .habits-color h3:after {
      background-color: var(--habits);
    }
    
    .treatment-color h3:after {
      background-color: var(--treatment);
    }
    
    .environment-color h3:after {
      background-color: var(--environment);
    }
    
    .culture-color h3:after {
      background-color: var(--culture);
    }
    
    .factor-detail-content p {
      margin-bottom: 15px;
    }
    
    .factor-detail-image {
      flex: 1;
      min-width: 300px;
      height: 350px;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .factor-detail-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .factor-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }
    
    .factor-metric {
      background-color: var(--white);
      border-radius: var(--radius);
      padding: 15px;
      flex: 1;
      min-width: 150px;
      box-shadow: var(--shadow);
      text-align: center;
    }
    
    .section:nth-child(odd) .factor-metric {
      background-color: var(--background);
    }
    
    .metric-value {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    
    .social-color .metric-value {
      color: var(--social);
    }
    
    .economic-color .metric-value {
      color: var(--economic);
    }
    
    .habits-color .metric-value {
      color: var(--habits);
    }
    
    .treatment-color .metric-value {
      color: var(--treatment);
    }
    
    .environment-color .metric-value {
      color: var(--environment);
    }
    
    .culture-color .metric-value {
      color: var(--culture);
    }
    
    .metric-label {
      font-size: 14px;
      color: var(--text-light);
    }
    
    /* AI Technology Section */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .tech-card {
      background-color: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }
    
    .section:nth-child(even) .tech-card {
      background-color: var(--white);
    }
    
    .tech-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    
    .tech-image {
      height: 200px;
      position: relative;
      overflow: hidden;
    }
    
    .tech-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .tech-content {
      padding: 20px;
    }
    
    .tech-content h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .tech-content p {
      margin-bottom: 15px;
    }
    
    /* Benefits Timeline */
    .timeline {
      position: relative;
      max-width: 800px;
      margin: 60px auto 0;
      padding-bottom: 40px;
    }
    
    .timeline:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: var(--primary-light);
      transform: translateX(-50%);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 60px;
      width: 100%;
    }
    
    .timeline-item:last-child {
      margin-bottom: 0;
    }
    
    .timeline-content {
      position: relative;
      width: calc(50% - 40px);
      padding: 30px;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(even) .timeline-content {
      background-color: var(--white);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
      left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
      left: calc(50% + 40px);
    }
    
    .timeline-content:before {
      content: '';
      position: absolute;
      top: 20px;
      width: 20px;
      height: 20px;
      background-color: var(--white);
      transform: rotate(45deg);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before {
      right: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:before {
      left: -10px;
    }
    
    .timeline-dot {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--white);
      font-weight: bold;
      z-index: 1;
    }
    
    .timeline-content h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .timeline-content p {
      margin-bottom: 0;
    }
    
    .timeline-content ul {
      margin-top: 15px;
    }
    
    .timeline-content li {
      padding-left: 25px;
      position: relative;
      margin-bottom: 10px;
    }
    
    .timeline-content li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--primary-light);
      font-weight: bold;
    }
    
    /* Research and Evidence */
    .evidence-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .tab-button {
      padding: 15px 25px;
      margin: 0 5px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      position: relative;
      color: var(--text-light);
      transition: all 0.3s ease;
    }
    
    .tab-button:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 3px;
      background-color: var(--primary-light);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    
    .tab-button.active {
      color: var(--primary);
    }
    
    .tab-button.active:after {
      transform: scaleX(1);
    }
    
    .tab-content {
      display: none;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .tab-content.active {
      display: block;
    }
    
    .research-item {
      background-color: var(--white);
      border-radius: var(--radius);
      margin-bottom: 30px;
      padding: 30px;
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(even) .research-item {
      background-color: var(--white);
    }
    
    .research-item h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .research-item p {
      margin-bottom: 15px;
    }
    
    .research-source {
      color: var(--text-light);
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--gradient);
      color: var(--white);
      text-align: center;
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--white);
    }

    .cta-section p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--white);
    }
    
    .btn-light {
      background-color: var(--white);
      color: var(--primary);
      padding: 14px 28px;
      font-size: 16px;
    }
    
    .btn-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .nav-menu-wrapper {
        display: flex;
        width: 100%;
        justify-content: flex-end;
      }
      
      .timeline:before {
        left: 20px;
      }
      
      .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
      }
      
      .timeline-content:before {
        left: -10px !important;
      }
      
      .timeline-dot {
        left: 20px;
      }
    }
    
    @media (max-width: 768px) {
      .page-banner h1 {
        font-size: 32px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .factor-metrics {
        flex-direction: column;
      }
      
      .factor-detail {
        flex-direction: column !important;
        gap: 30px;
      }
      
      .factor-detail-image {
        width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .factor-detail-content h3 {
        font-size: 24px;
      }
      
      .timeline-content {
        padding: 20px;
      }
    }

    /* Language Selector Styles */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .language-toggle {
      display: flex;
      background-color: var(--background);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid var(--border-color);
    }

    .language-option {
      padding: 6px 12px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
    }

    .language-option.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .language-option:hover:not(.active) {
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
    }

    .detection-info {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: rgba(0, 0, 0, 0.8);
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 0.9em;
      opacity: 0.8;
      color: white;
      z-index: 1000;
      transition: opacity 0.3s ease;
    }

    .detection-info.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Responsive language selector */
    @media (max-width: 768px) {
      .language-selector {
        top: 10px;
        right: 10px;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
      
      /* Factor colors */
      --social: #4e54c8;
      --economic: #3db3a2;
      --habits: #fd7e14;
      --treatment: #dc3545;
      --environment: #28a745;
      --culture: #6f42c1;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Page Banner */
    .page-banner {
      padding-top: 120px;
      padding-bottom: 60px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
    }
    
    .page-banner:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/api/placeholder/1200/400') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
    }
    
    .banner-content {
      position: relative;
      z-index: 2;
    }
    
    .page-banner h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    
    .page-banner p {
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 0;
      opacity: 0.9;
    }
    
    /* Section Styles */
    .section {
      padding: 80px 0;
    }
    
    .section:nth-child(odd) {
      background-color: var(--white);
    }
    
    .section:nth-child(even) {
      background-color: var(--background);
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-header h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-header p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Contact Form Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-top: 40px;
    }
    
    .contact-form {
      background-color: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(odd) .contact-form {
      background-color: var(--background);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      border-color: var(--primary-light);
      outline: none;
      box-shadow: 0 0 0 3px rgba(31, 162, 255, 0.1);
    }
    
    .form-control.invalid {
      border-color: var(--treatment);
      background-color: rgba(220, 53, 69, 0.05);
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .form-select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-size: 16px;
      background-color: var(--white);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      cursor: pointer;
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
    }
    
    .form-check input {
      margin-top: 5px;
    }
    
    .form-check label {
      font-size: 14px;
      color: var(--text-light);
    }
    
    .btn-submit {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      background: var(--gradient);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .btn-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    
    /* Contact Info Section */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .info-card {
      background-color: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }
    
    .section:nth-child(odd) .info-card {
      background-color: var(--background);
    }
    
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .info-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .info-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      flex-shrink: 0;
    }
    
    .info-title h3 {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .info-title p {
      font-size: 16px;
      color: var(--text-light);
    }
    
    .info-content {
      margin-top: 20px;
    }
    
    .info-content p {
      margin-bottom: 15px;
    }
    
    .info-content a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    .info-content a:hover {
      color: var(--primary-light);
      transform: translateX(5px);
    }
    
    .info-map {
      height: 200px;
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 20px;
    }
    
    .info-map img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Process Section */
    .process-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .process-card {
      background-color: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .section:nth-child(even) .process-card {
      background-color: var(--white);
    }
    
    .process-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .process-step {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      font-weight: bold;
      margin: 0 auto 20px;
    }
    
    .process-card h3 {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .process-card p {
      color: var(--text-dark);
      margin-bottom: 0;
    }
    
    /* FAQ Section */
    .faq-section {
      margin-top: 40px;
    }
    
    .faq-item {
      background-color: var(--white);
      border-radius: var(--radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(even) .faq-item {
      background-color: var(--white);
    }
    
    .faq-question {
      padding: 20px;
      font-size: 18px;
      font-weight: 500;
      color: var(--primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: rgba(31, 162, 255, 0.05);
      transition: all 0.3s ease;
    }
    
    .faq-question:hover {
      background-color: rgba(31, 162, 255, 0.1);
    }
    
    .faq-question:after {
      content: "+";
      font-size: 24px;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-question:after {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 20px 20px;
      max-height: 500px;
    }
    
    /* Testimonial Section */
    .testimonial-carousel {
      max-width: 800px;
      margin: 40px auto 0;
      position: relative;
    }
    
    .testimonial-slide {
      background-color: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
      display: none;
    }
    
    .testimonial-slide.active {
      display: block;
    }
    
    .section:nth-child(even) .testimonial-slide {
      background-color: var(--white);
    }
    
    .testimonial-content {
      font-size: 18px;
      margin-bottom: 30px;
      position: relative;
    }
    
    .testimonial-content:before {
      content: """;
      font-size: 60px;
      color: var(--primary-light);
      position: absolute;
      left: -15px;
      top: -20px;
      opacity: 0.3;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      font-weight: bold;
    }
    
    .author-info h4 {
      font-size: 18px;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .author-info p {
      font-size: 14px;
      color: var(--text-light);
    }
    
    .testimonial-indicators {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .indicator.active {
      background-color: var(--primary-light);
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--gradient);
      color: var(--white);
      text-align: center;
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--white);
    }

    .cta-section p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--white);
    }
    
    .btn-light {
      background-color: var(--white);
      color: var(--primary);
      padding: 14px 28px;
      font-size: 16px;
    }
    
    .btn-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .nav-menu-wrapper {
        display: flex;
        width: 100%;
        justify-content: flex-end;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }
    
    /* Language Selector Styles */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .language-toggle {
      display: flex;
      background-color: var(--background);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid var(--border-color);
    }

    .language-option {
      padding: 6px 12px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
    }

    .language-option.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .language-option:hover:not(.active) {
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
    }

    @media (max-width: 768px) {
      .page-banner h1 {
        font-size: 32px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .process-cards {
        grid-template-columns: 1fr;
      }
      
      .language-selector {
        top: 10px;
        right: 10px;
      }
    }
    
    @media (max-width: 576px) {
      .testimonial-slide {
        padding: 30px 20px;
      }
      
      .testimonial-content {
        font-size: 16px;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Language Selector */
    .language-selector {
      position: absolute;
      top: 15px;
      right: 20px;
      z-index: 1001;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 5px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .language-toggle {
      display: flex;
      background: var(--background);
      border-radius: 15px;
      position: relative;
      overflow: hidden;
    }
    
    .language-option {
      padding: 6px 12px;
      font-size: 12px;
      font-weight: bold;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      background: transparent;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .language-option.active {
      color: var(--white);
      background: var(--primary);
      border-radius: 15px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .language-option:not(.active):hover {
      color: var(--primary);
    }

    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      position: relative;
    }
    
    .logo {
      height: 40px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Page Banner */
    .page-banner {
      padding-top: 120px;
      padding-bottom: 60px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
    }
    
    .page-banner:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/api/placeholder/1200/400') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
    }
    
    .banner-content {
      position: relative;
      z-index: 2;
    }
    
    .page-banner h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    
    .page-banner p {
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 0;
      opacity: 0.9;
    }
    
    /* Legal Page Styles */
    .legal-container {
      display: flex;
      gap: 40px;
      margin-top: 60px;
      margin-bottom: 60px;
    }
    
    .legal-sidebar {
      position: sticky;
      top: 100px;
      width: 280px;
      flex-shrink: 0;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 30px;
    }
    
    .legal-nav {
    }
    
    .legal-nav-item {
      margin-bottom: 10px;
    }
    
    .legal-nav-item a {
      display: block;
      padding: 10px;
      color: var(--text-dark);
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    
    .legal-nav-item a:hover,
    .legal-nav-item a.active {
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
    }
    
    .legal-nav-item.section-title {
      font-weight: bold;
      color: var(--primary);
      margin-top: 20px;
      margin-bottom: 10px;
      padding-bottom: 5px;
      border-bottom: 1px solid var(--border-color);
    }
    
    .legal-nav-item.section-title:first-child {
      margin-top: 0;
    }
    
    .legal-content {
      flex: 1;
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 40px;
    }
    
    .legal-section {
      margin-bottom:.60px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border-color);
    }
    
    .legal-section:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    
    .legal-section h2 {
      font-size: 28px;
      color: var(--primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary-light);
    }
    
    .legal-section h3 {
      font-size: 22px;
      color: var(--primary);
      margin-top: 30px;
      margin-bottom: 15px;
    }
    
    .legal-section h4 {
      font-size: 18px;
      color: var(--primary);
      margin-top: 25px;
      margin-bottom: 10px;
    }
    
    .legal-section p {
      margin-bottom: 15px;
    }
    
    .legal-section ul, 
    .legal-section ol {
      margin-bottom: 20px;
      padding-left: 30px;
    }
    
    .legal-section li {
      margin-bottom: 10px;
    }
    
    .legal-section .table-container {
      width: 100%;
      overflow-x: auto;
      margin: 20px 0;
    }
    
    .legal-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    
    .legal-table th {
      background-color: var(--primary);
      color: var(--white);
      padding: 12px 15px;
      text-align: left;
    }
    
    .legal-table td {
      padding: 12px 15px;
      border-bottom: 1px solid var(--border-color);
    }
    
    .legal-table tr:nth-child(even) {
      background-color: rgba(31, 162, 255, 0.05);
    }
    
    .highlight-box {
      background-color: rgba(31, 162, 255, 0.1);
      border-left: 4px solid var(--primary-light);
      padding: 20px;
      margin: 20px 0;
      border-radius: 0 var(--radius) var(--radius) 0;
    }
    
    .highlight-box p:last-child {
      margin-bottom: 0;
    }
    
    .last-updated {
      display: inline-block;
      margin-top: 10px;
      font-size: 14px;
      color: var(--text-light);
    }
    
    .legal-document-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid var(--border-color);
    }
    
    .legal-contacts {
      font-size: 14px;
    }
    
    .download-pdf {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 500;
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
      margin-top: 80px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .language-selector {
        position: static;
        order: 3;
        margin-top: 10px;
        width: auto;
        justify-content: center;
      }
      
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .nav-menu-wrapper {
        display: flex;
        width: 100%;
        justify-content: flex-end;
      }
      
      .legal-container {
        flex-direction: column;
      }
      
      .legal-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        margin-bottom: 30px;
      }
      
      .legal-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      
      .legal-nav-item {
        margin-bottom: 0;
      }
      
      .legal-nav-item.section-title {
        width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .page-banner h1 {
        font-size: 32px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .legal-content {
        padding: 30px 20px;
      }
      
      .legal-document-actions {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
      }
    }
    
    @media (max-width: 576px) {
      .legal-section h2 {
        font-size: 24px;
      }
      
      .legal-section h3 {
        font-size: 20px;
      }
      
      .legal-section h4 {
        font-size: 16px;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
      
      /* Factor colors */
      --social: #4e54c8;
      --economic: #3db3a2;
      --habits: #fd7e14;
      --treatment: #dc3545;
      --environment: #28a745;
      --culture: #6f42c1;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .btn-hero {
      padding: 14px 28px;
      font-size: 16px;
    }
    
    .btn-light {
      background-color: var(--white);
      color: var(--primary);
    }
    
    .btn-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }
    
    .btn-solution {
      background: var(--primary-light);
      color: var(--white);
      padding: 12px 24px;
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    
    .btn-solution:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }
    
    /* Hero Section */
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .hero:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: url('/api/placeholder/1200/800') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    
    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .hero-cta {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    /* Solutions Navigation */
    .solutions-nav {
      background: var(--white);
      padding: 40px 0;
      box-shadow: var(--shadow);
    }
    
    .nav-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    
    .nav-item {
      text-align: center;
      padding: 20px;
      border-radius: var(--radius);
      background: var(--background);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .nav-item:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
    }
    
    .nav-icon {
      font-size: 36px;
      margin-bottom: 15px;
    }
    
    .nav-title {
      font-size: 16px;
      font-weight: bold;
      color: var(--primary);
    }
    
    .nav-item:hover .nav-title {
      color: var(--white);
    }
    
    /* Solutions Sections */
    .solution-section {
      padding: 80px 0;
    }
    
    .solution-section:nth-child(even) {
      background: var(--white);
    }
    
    .solution-section:nth-child(odd) {
      background: var(--background);
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-title p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* 6-Factor Solutions */
    .factors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .factor-solution {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    
    .factor-solution:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .factor-header {
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .factor-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--white);
      flex-shrink: 0;
    }
    
    .factor-title {
      flex: 1;
    }
    
    .factor-title h3 {
      font-size: 22px;
      margin-bottom: 5px;
    }
    
    .factor-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .factor-description {
      margin-bottom: 20px;
      flex: 1;
    }
    
    .factor-features {
      margin-bottom: 20px;
    }
    
    .factor-features li {
      padding: 5px 0;
      padding-left: 20px;
      position: relative;
      color: var(--text-dark);
    }
    
    .factor-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--primary-light);
      font-weight: bold;
    }
    
    .factor-metrics {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 15px;
    }
    
    .metric {
      text-align: center;
    }
    
    .metric-value {
      font-size: 24px;
      font-weight: bold;
      color: var(--primary);
    }
    
    .metric-label {
      font-size: 14px;
      color: var(--text-light);
    }
    
    /* Platform Features */
    .platform-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .feature-card {
      background: var(--white);
      padding: 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 36px;
      color: var(--white);
    }
    
    .feature-card h3 {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .feature-card p {
      color: var(--text-dark);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    /* Implementation Process */
    .implementation-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      position: relative;
    }
    
    .step-card {
      background: var(--white);
      padding: 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
    }
    
    .step-number {
      width: 60px;
      height: 60px;
      background: var(--gradient);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      margin: 0 auto 20px;
    }
    
    .step-card h3 {
      font-size: 20px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .step-card p {
      color: var(--text-dark);
      line-height: 1.6;
    }
    
    /* Industry Solutions */
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }
    
    .industry-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 25px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border-left: 4px solid var(--primary-light);
    }
    
    .industry-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .industry-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }
    
    .industry-icon {
      font-size: 28px;
    }
    
    .industry-card h3 {
      font-size: 20px;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    .industry-card p {
      color: var(--text-dark);
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .industry-stats {
      display: flex;
      justify-content: space-between;
      background: var(--background);
      padding: 15px;
      border-radius: var(--radius);
    }
    
    .industry-stat {
      text-align: center;
    }
    
    .industry-stat-value {
      font-size: 18px;
      font-weight: bold;
      color: var(--primary);
    }
    
    .industry-stat-label {
      font-size: 12px;
      color: var(--text-light);
    }
    
    /* ROI Section */
    .roi-section {
      background: var(--gradient);
      color: var(--white);
      padding: 80px 0;
      text-align: center;
    }
    
    .roi-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .roi-stat {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: var(--radius);
      backdrop-filter: blur(10px);
    }
    
    .roi-value {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 15px;
    }
    
    .roi-label {
      font-size: 16px;
      opacity: 0.9;
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--white);
      text-align: center;
    }
    
    .cta-section h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .cta-section p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto 30px;
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Factor Colors */
    .social-color {
      background-color: var(--social);
    }
    
    .economic-color {
      background-color: var(--economic);
    }
    
    .habits-color {
      background-color: var(--habits);
    }
    
    .treatment-color {
      background-color: var(--treatment);
    }
    
    .environment-color {
      background-color: var(--environment);
    }
    
    .culture-color {
      background-color: var(--culture);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .factors-grid {
        grid-template-columns: 1fr;
      }
      
      .platform-features {
        grid-template-columns: 1fr;
      }
      
      .implementation-steps {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 36px;
      }
      
      .nav-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .roi-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .factor-metrics {
        flex-direction: column;
        gap: 15px;
      }
    }
    
    @media (max-width: 576px) {
      .hero-cta {
        flex-direction: column;
      }
      
      .hero-cta .btn {
        width: 100%;
      }
      
      .nav-grid {
        grid-template-columns: 1fr;
      }
      
      .roi-stats {
        grid-template-columns: 1fr;
      }
      
      .industry-stats {
        flex-direction: column;
        gap: 10px;
      }
    }
    
    /* Language Selector */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      gap: 15px;
      z-index: 1002;
    }

    .language-toggle {
      display: flex;
      background-color: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 4px;
      gap: 2px;
    }

    .language-option {
      padding: 8px 16px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
      background-color: transparent;
    }

    .language-option:hover {
      background-color: var(--background);
      color: var(--text-dark);
    }

    .language-option.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .detection-info {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: rgba(0, 0, 0, 0.8);
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 0.9em;
      opacity: 0.8;
      color: white;
      z-index: 1000;
      transition: opacity 0.3s ease;
    }

    .detection-info.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Responsive language selector */
    @media (max-width: 768px) {
      .language-selector {
        top: 10px;
        right: 10px;
      }
      
      .language-option {
        padding: 6px 12px;
        font-size: 12px;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
      
      /* Status colors */
      --success: #28a745;
      --warning: #ffc107;
      --danger: #dc3545;
      --info: #17a2b8;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .btn-success {
      background-color: var(--success);
      color: var(--white);
      border: none;
    }
    
    .btn-success:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    /* Language Selector Styles */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .language-toggle {
      display: flex;
      background-color: var(--background);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid var(--border-color);
    }

    .language-option {
      padding: 6px 12px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
    }

    .language-option.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .language-option:hover:not(.active) {
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
    }
    
    /* Page Banner */
    .page-banner {
      padding-top: 120px;
      padding-bottom: 60px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
    }
    
    .page-banner:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/api/placeholder/1200/400') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
    }
    
    .banner-content {
      position: relative;
      z-index: 2;
    }
    
    .page-banner h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    
    .page-banner p {
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    /* Support Hero Section */
    .search-container {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
    }
    
    .search-box {
      width: 100%;
      padding: 15px 20px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .search-btn {
      position: absolute;
      right: 5px;
      top: 5px;
      background: var(--gradient);
      color: white;
      border: none;
      height: 40px;
      width: 40px;
      border-radius: 50%;
      cursor: pointer;
    }
    
    /* Main Content */
    .section {
      padding: 60px 0;
    }
    
    .section:nth-child(odd) {
      background-color: var(--white);
    }
    
    .section:nth-child(even) {
      background-color: var(--background);
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .section-header h2 {
      font-size: 32px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-header p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Help Categories */
    .help-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .category-card {
      background-color: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .section:nth-child(odd) .category-card {
      background-color: var(--background);
    }
    
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .category-icon {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      background: var(--gradient);
      color: var(--white);
    }
    
    .category-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .category-content h3 {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    .category-content p {
      margin-bottom: 20px;
      flex: 1;
    }
    
    .category-links {
      margin-top: auto;
    }
    
    .category-links li {
      margin-bottom: 8px;
    }
    
    .category-links a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    .category-links a:hover {
      color: var(--primary-light);
      transform: translateX(5px);
    }
    
    /* System Status */
    .system-status {
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 25px;
      margin-top: 40px;
    }
    
    .status-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    
    .status-header h3 {
      font-size: 20px;
      color: var(--primary);
    }
    
    .status-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
    }
    
    .status-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }
    
    .status-operational .status-dot {
      background-color: var(--success);
    }
    
    .status-issues .status-dot {
      background-color: var(--warning);
    }
    
    .status-outage .status-dot {
      background-color: var(--danger);
    }
    
    .status-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .status-item {
      padding: 15px;
      border-radius: var(--radius);
      background-color: var(--background);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .status-name {
      font-weight: 500;
    }
    
    .view-status-history {
      display: block;
      text-align: right;
      margin-top: 20px;
      font-size: 14px;
    }
    
    /* FAQ Accordion */
    .faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }
    
    .faq-category {
      margin-bottom: 30px;
    }
    
    .faq-category-title {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border-color);
    }
    
    .faq-item {
      background-color: var(--white);
      border-radius: var(--radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .section:nth-child(odd) .faq-item {
      background-color: var(--background);
    }
    
    .faq-question {
      padding: 20px;
      font-size: 18px;
      font-weight: 500;
      color: var(--primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .faq-question:hover {
      background-color: rgba(31, 162, 255, 0.05);
    }
    
    .faq-question:after {
      content: "+";
      font-size: 24px;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-question:after {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 20px 20px;
      max-height: 1000px;
    }
    
    .faq-answer p {
      margin-bottom: 15px;
    }
    
    .faq-answer ul {
      margin-left: 20px;
      margin-bottom: 15px;
    }
    
    .faq-answer li {
      margin-bottom: 8px;
    }
    
    .view-all-faqs {
      display: block;
      text-align: center;
      margin-top: 20px;
    }
    
    /* Contact Support Section */
    .support-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .support-card {
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 30px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .section:nth-child(odd) .support-card {
      background-color: var(--background);
    }
    
    .support-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .support-card-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .support-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      flex-shrink: 0;
    }
    
    .support-title h3 {
      font-size: 20px;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .support-title p {
      font-size: 14px;
      color: var(--text-light);
    }
    
    .support-content {
      flex: 1;
      margin-bottom: 20px;
    }
    
    .support-times {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
      color: var(--text-light);
      font-size: 14px;
    }
    
    .support-card .btn {
      width: 100%;
      text-align: center;
      margin-top: auto;
    }
    
    /* Support Form */
    .support-form {
      background-color: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 40px;
      margin-top: 40px;
    }
    
    .section:nth-child(odd) .support-form {
      background-color: var(--background);
    }
    
    .form-title {
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .form-description {
      margin-bottom: 30px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      border-color: var(--primary-light);
      outline: none;
      box-shadow: 0 0 0 3px rgba(31, 162, 255, 0.1);
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .form-select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-size: 16px;
      background-color: var(--white);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      cursor: pointer;
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .form-help-text {
      margin-top: 5px;
      font-size: 14px;
      color: var(--text-light);
    }
    
    .form-file {
      display: none;
    }
    
    .file-upload-btn {
      display: inline-block;
      padding: 10px 15px;
      background-color: var(--background);
      border: 1px dashed var(--border-color);
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .file-upload-btn:hover {
      background-color: rgba(31, 162, 255, 0.05);
      border-color: var(--primary-light);
    }
    
    .file-info {
      display: flex;
      align-items: center;
      margin-top: 10px;
      font-size: 14px;
    }
    
    .file-preview {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }
    
    .file-item {
      display: flex;
      align-items: center;
      padding: 5px 10px;
      background-color: var(--background);
      border-radius: 15px;
      font-size: 14px;
    }
    
    .file-remove {
      margin-left: 5px;
      cursor: pointer;
      color: var(--text-light);
    }
    
    .btn-submit {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      background: var(--gradient);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Self-Help Resources */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .resource-card {
      background-color: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .section:nth-child(odd) .resource-card {
      background-color: var(--background);
    }
    
    .resource-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .resource-image {
      height: 160px;
      overflow: hidden;
    }
    
    .resource-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }
    
    .resource-card:hover .resource-image img {
      transform: scale(1.05);
    }
    
    .resource-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .resource-tag {
      display: inline-block;
      padding: 3px 8px;
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
      border-radius: 12px;
      font-size: 12px;
      margin-bottom: 10px;
    }
    
    .resource-content h3 {
      font-size: 18px;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    .resource-content p {
      margin-bottom: 20px;
      flex: 1;
    }
    
    .resource-meta {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--text-light);
      margin-top: auto;
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
      margin-top: 80px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .nav-menu-wrapper {
        display: flex;
        width: 100%;
        justify-content: flex-end;
      }
      
      .form-row {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .page-banner h1 {
        font-size: 32px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .language-selector {
        top: 10px;
        right: 10px;
      }
      
      .search-container {
        max-width: 100%;
      }
      
      .support-form {
        padding: 30px 20px;
      }
    }
    
    @media (max-width: 576px) {
      .search-btn {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        border-radius: var(--radius);
        margin-top: 10px;
        height: 45px;
      }
      
      .search-box {
        border-radius: var(--radius);
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --border-color: #e0e0e0;
      
      /* Factor colors */
      --social: #4e54c8;
      --economic: #3db3a2;
      --habits: #fd7e14;
      --treatment: #dc3545;
      --environment: #28a745;
      --culture: #6f42c1;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    /* Hero Section */
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      background: var(--gradient);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .hero:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: url('/api/placeholder/1200/800') no-repeat center center;
      background-size: cover;
      opacity: 0.1;
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    
    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .hero-stat {
      text-align: center;
    }
    
    .hero-stat-value {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    
    .hero-stat-label {
      font-size: 14px;
      opacity: 0.8;
    }
    
    .hero-cta {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .btn-hero {
      padding: 14px 28px;
      font-size: 16px;
    }
    
    .btn-light {
      background-color: var(--white);
      color: var(--primary);
    }
    
    .btn-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }
    
    /* Health Metrics Dashboard */
    .health-dashboard {
      padding: 80px 0;
      background: var(--white);
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-title p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
    }
    
    .dashboard-preview {
      background: var(--background);
      border-radius: var(--radius);
      padding: 40px;
      margin-bottom: 50px;
      position: relative;
      overflow: hidden;
    }
    
    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .dashboard-title {
      font-size: 24px;
      color: var(--primary);
      font-weight: bold;
    }
    
    .dashboard-metrics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    
    .metric-card {
      background: var(--white);
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
    }
    
    .metric-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 24px;
      color: var(--white);
    }
    
    .metric-value {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .metric-label {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 10px;
    }
    
    .metric-trend {
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 12px;
      font-weight: bold;
    }
    
    .trend-up {
      background: var(--environment);
      color: var(--white);
    }
    
    .trend-down {
      background: var(--habits);
      color: var(--white);
    }
    
    .activity-icon { background: var(--environment); }
    .heart-icon { background: var(--treatment); }
    .sleep-icon { background: var(--primary); }
    .mental-icon { background: var(--social); }
    
    /* Factor Insights */
    .factors-insights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 25px;
    }
    
    .insight-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 25px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--primary-light);
    }
    
    .insight-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .insight-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--white);
      flex-shrink: 0;
    }
    
    .insight-factor {
      font-size: 18px;
      font-weight: bold;
      color: var(--primary);
    }
    
    .insight-content p {
      color: var(--text-dark);
      margin-bottom: 15px;
      line-height: 1.6;
    }
    
    .insight-recommendation {
      background: var(--background);
      padding: 15px;
      border-radius: var(--radius);
      color: var(--text-dark);
      font-size: 14px;
      line-height: 1.5;
    }
    
    /* Health Solutions */
    .health-solutions {
      padding: 80px 0;
      background: var(--background);
    }
    
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .solution-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    
    .solution-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .solution-header {
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .solution-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--white);
      flex-shrink: 0;
    }
    
    .solution-title {
      flex: 1;
    }
    
    .solution-title h3 {
      font-size: 22px;
      margin-bottom: 5px;
    }
    
    .solution-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .solution-description {
      margin-bottom: 20px;
      flex: 1;
    }
    
    .solution-metrics {
      display: flex;
      justify-content: space-between;
      margin-top: auto;
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 15px;
    }
    
    .metric {
      text-align: center;
    }
    
    .metric-value {
      font-size: 24px;
      font-weight: bold;
      color: var(--primary);
    }
    
    .metric-label {
      font-size: 14px;
      color: var(--text-light);
    }
    
    /* ROI Calculator Section */
    .roi-calculator {
      padding: 80px 0;
      background: var(--white);
    }
    
    .calculator-container {
      max-width: 800px;
      margin: 0 auto;
      background: var(--background);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
    }
    
    .calculator-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .calculator-form {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
    }
    
    .form-group label {
      font-weight: bold;
      margin-bottom: 8px;
      color: var(--primary);
    }
    
    .form-group input {
      padding: 12px;
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: var(--radius);
      font-size: 16px;
    }
    
    .calculator-button {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .btn-calculate {
      background: var(--gradient);
      color: var(--white);
      padding: 15px 40px;
      font-size: 18px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-calculate:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .calculator-results {
      display: none;
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      text-align: center;
    }
    
    .result-highlight {
      font-size: 48px;
      font-weight: bold;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
    }
    
    .result-breakdown {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .breakdown-item {
      padding: 20px;
      background: var(--background);
      border-radius: var(--radius);
    }
    
    .breakdown-value {
      font-size: 24px;
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .breakdown-label {
      font-size: 14px;
      color: var(--text-light);
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--gradient);
      color: var(--white);
      text-align: center;
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--white);
    }

    .cta-section p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--white);
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Factor Colors */
    .social-color {
      background-color: var(--social);
    }
    
    .economic-color {
      background-color: var(--economic);
    }
    
    .habits-color {
      background-color: var(--habits);
    }
    
    .treatment-color {
      background-color: var(--treatment);
    }
    
    .environment-color {
      background-color: var(--environment);
    }
    
    .culture-color {
      background-color: var(--culture);
    }
    
    /* Language Selector Styles */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .language-toggle {
      display: flex;
      background-color: var(--background);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid var(--border-color);
    }

    .language-option {
      padding: 6px 12px;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
    }

    .language-option.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .language-option:hover:not(.active) {
      background-color: rgba(31, 162, 255, 0.1);
      color: var(--primary);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .calculator-form {
        grid-template-columns: 1fr;
      }
      
      .dashboard-metrics {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }
      
      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .dashboard-metrics {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .solutions-grid {
        grid-template-columns: 1fr;
      }
      
      .language-selector {
        top: 10px;
        right: 10px;
      }
    }
    
    @media (max-width: 576px) {
      .hero-cta {
        flex-direction: column;
      }
      
      .hero-cta .btn {
        width: 100%;
      }
    }
    :root {
      --primary: #00315e;
      --primary-light: #1fa2ff;
      --gradient: linear-gradient(90deg, #00315e 0%, #1fa2ff 100%);
      --text-dark: #333333;
      --text-light: #555555;
      --background: #f4f6f8;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0,0,0,0.1);
      --radius: 8px;
      --success: #28a745;
      --warning: #ffc107;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: var(--primary-light);
      transition: all 0.3s ease;
    }
    
    a:hover {
      opacity: 0.85;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      position: relative;
    }
    
    .logo {
      height: 80px;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--text-dark);
      font-weight: 500;
    }
    
    .nav-links a:hover {
      color: var(--primary-light);
    }
    
    .cta-buttons {
      display: flex;
      gap: 15px;
    }
    
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span.active:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle span.active:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle span.active:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      text-align: center;
    }
    
    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      border: none;
    }
    
    .btn-primary:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .btn-download {
      background: var(--success);
      color: var(--white);
      padding: 12px 24px;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-download:hover {
      background: #218838;
      transform: translateY(-2px);
    }
    
    /* Page Header */
    .page-header {
      padding-top: 120px;
      padding-bottom: 60px;
      background: var(--gradient);
      color: var(--white);
      text-align: center;
    }
    
    .page-header h1 {
      font-size: 48px;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .page-header p {
      font-size: 18px;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Filter Section */
    .filter-section {
      background: var(--white);
      padding: 30px 0;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .filter-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .filter-tags {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .filter-tag {
      padding: 8px 16px;
      border-radius: 20px;
      background: var(--background);
      color: var(--text-dark);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .filter-tag:hover,
    .filter-tag.active {
      background: var(--primary);
      color: var(--white);
    }
    
    .search-box {
      display: flex;
      align-items: center;
      background: var(--background);
      border-radius: var(--radius);
      padding: 10px 15px;
      min-width: 250px;
    }
    
    .search-box input {
      border: none;
      outline: none;
      background: transparent;
      flex: 1;
      font-size: 14px;
    }
    
    .search-box i {
      color: var(--text-light);
      margin-right: 10px;
    }
    
    /* White Papers Grid */
    .white-papers-section {
      padding: 60px 0;
      background: var(--background);
    }
    
    .papers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    
    .paper-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    
    .paper-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .paper-preview {
      height: 200px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .paper-preview::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="60" height="80" x="20" y="10" fill="white" opacity="0.9" rx="2"/><rect width="40" height="3" x="30" y="25" fill="%23333" opacity="0.3"/><rect width="45" height="3" x="30" y="35" fill="%23333" opacity="0.3"/><rect width="35" height="3" x="30" y="45" fill="%23333" opacity="0.3"/><rect width="50" height="3" x="30" y="55" fill="%23333" opacity="0.3"/><rect width="30" height="3" x="30" y="65" fill="%23333" opacity="0.3"/></svg>') center center/80px 100px no-repeat;
    }
    
    .paper-icon {
      font-size: 48px;
      color: white;
      opacity: 0.8;
      z-index: 1;
      position: relative;
    }
    
    .paper-content {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .paper-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      font-size: 12px;
      color: var(--text-light);
    }
    
    .paper-category {
      background: var(--primary-light);
      color: white;
      padding: 4px 8px;
      border-radius: 12px;
      font-weight: 600;
    }
    
    .paper-date {
      background: var(--background);
      padding: 4px 8px;
      border-radius: 12px;
    }
    
    .paper-title {
      font-size: 22px;
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 15px;
      line-height: 1.3;
    }
    
    .paper-description {
      color: var(--text-dark);
      margin-bottom: 20px;
      flex: 1;
      line-height: 1.6;
    }
    
    .paper-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding: 15px;
      background: var(--background);
      border-radius: var(--radius);
      font-size: 14px;
    }
    
    .stat-item {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--text-light);
    }
    
    .paper-actions {
      display: flex;
      gap: 15px;
      margin-top: auto;
    }
    
    .btn-preview {
      flex: 1;
      background: var(--background);
      color: var(--primary);
      padding: 12px;
      text-align: center;
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    
    .btn-preview:hover {
      background: var(--primary);
      color: var(--white);
    }
    
    /* Featured Paper */
    .featured-paper {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 40px;
      border: 3px solid var(--primary-light);
    }
    
    .featured-content {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 0;
    }
    
    .featured-preview {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .featured-preview::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="60" height="80" x="20" y="10" fill="white" opacity="0.9" rx="2"/><rect width="40" height="3" x="30" y="25" fill="%23333" opacity="0.3"/><rect width="45" height="3" x="30" y="35" fill="%23333" opacity="0.3"/><rect width="35" height="3" x="30" y="45" fill="%23333" opacity="0.3"/><rect width="50" height="3" x="30" y="55" fill="%23333" opacity="0.3"/><rect width="30" height="3" x="30" y="65" fill="%23333" opacity="0.3"/></svg>') center center/120px 150px no-repeat;
    }
    
    .featured-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--warning);
      color: var(--text-dark);
      padding: 6px 12px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: bold;
      z-index: 2;
    }
    
    .featured-info {
      padding: 30px;
      display: flex;
      flex-direction: column;
    }
    
    .featured-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      font-size: 12px;
    }
    
    .featured-title {
      font-size: 28px;
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 15px;
      line-height: 1.3;
    }
    
    .featured-description {
      color: var(--text-dark);
      margin-bottom: 25px;
      font-size: 16px;
      line-height: 1.6;
    }
    
    .featured-highlights {
      margin-bottom: 25px;
    }
    
    .featured-highlights h4 {
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 16px;
    }
    
    .highlight-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 8px;
    }
    
    .highlight-list li {
      padding-left: 20px;
      position: relative;
      color: var(--text-dark);
      font-size: 14px;
    }
    
    .highlight-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--success);
      font-weight: bold;
    }
    
    .featured-actions {
      display: flex;
      gap: 15px;
      margin-top: auto;
    }
    
    /* Newsletter Signup */
    .newsletter-section {
      background: var(--primary);
      color: var(--white);
      padding: 60px 0;
      text-align: center;
    }
    
    .newsletter-content {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .newsletter-content h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }
    
    .newsletter-content p {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 30px;
    }
    
    .newsletter-form {
      display: flex;
      gap: 15px;
      max-width: 400px;
      margin: 0 auto;
    }
    
    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border: none;
      border-radius: var(--radius);
      font-size: 16px;
    }
    
    .newsletter-form button {
      background: var(--white);
      color: var(--primary);
      padding: 12px 24px;
      border: none;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .newsletter-form button:hover {
      background: rgba(255, 255, 255, 0.9);
    }
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary-light);
    }
    
    .footer-links {
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      .nav-links, .cta-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
      }
      
      .nav-links.active, .cta-buttons.active {
        display: flex;
      }
      
      .featured-content {
        grid-template-columns: 1fr;
      }
      
      .featured-preview {
        height: 200px;
      }
      
      .filter-container {
        flex-direction: column;
        align-items: stretch;
      }
      
      .search-box {
        min-width: auto;
      }
    }
    
    @media (max-width: 768px) {
      .page-header h1 {
        font-size: 36px;
      }
      
      .papers-grid {
        grid-template-columns: 1fr;
      }
      
      .newsletter-form {
        flex-direction: column;
      }
      
      .featured-title {
        font-size: 24px;
      }
      
      .paper-actions {
        flex-direction: column;
      }
    }
    
    @media (max-width: 576px) {
      .paper-card {
        margin: 0 -10px;
      }
      
      .filter-tags {
        justify-content: center;
      }
      
      .featured-actions {
        flex-direction: column;
      }
    }

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  
  /* Maintain 3 columns for hexagon grid even on very small screens */
  .hexagon-grid { 
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 6px;
    max-width: 400px;
  }
  
  .hexagon-content {
    padding: 6%;
  }
  
  .hexagon-content h3 {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }
  
  .hexagon-content p {
    font-size: 0.5rem;
    line-height: 1.1;
  }
  
  .hexagon-icon {
    font-size: 1rem;
    margin-bottom: 2px;
  }
}


.detection-info.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Demo Banner */
    .demo-banner {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: var(--white);
      padding: 50px 0;
      position: relative;
      overflow: hidden;
    }

    .demo-banner:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="80" r="2.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="20" r="1.5" fill="white" opacity="0.1"/></svg>') repeat;
      animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .demo-banner-content {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 auto;
    }

    .demo-banner-text h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .demo-banner-text p {
      font-size: 16px;
      opacity: 0.9;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .demo-banner-cta {
      text-align: center;
      flex-shrink: 0;
    }

    .btn-demo {
      background: var(--white);
      color: var(--primary);
      padding: 16px 32px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      display: inline-block;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-demo:hover {
      background: rgba(255, 255, 255, 0.95);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .demo-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 14px;
      opacity: 0.9;
    }

    .demo-features span {
      background: rgba(255, 255, 255, 0.1);
      padding: 6px 12px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
    }

    /* Responsive for demo banner */
    @media (max-width: 992px) {
      .demo-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
      }

      .demo-banner-text h2 {
        font-size: 28px;
      }

      .demo-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 768px) {
      .demo-banner {
        padding: 40px 0;
      }

      .demo-banner-text h2 {
        font-size: 24px;
      }

      .demo-banner-text p {
        font-size: 15px;
      }

      .btn-demo {
        padding: 14px 28px;
        font-size: 16px;
      }

      .demo-features {
        flex-direction: column;
      }
    }

    