    /* ====================
       BASE STYLES & VARIABLES
       ==================== */
    :root {
      /* Color Palette */
      --primary-color: #0c84c0;
      --primary-dark: #0c5e7a;
      --primary-light: #e1f0f7;
      --secondary-color: #10b981;
      --secondary-dark: #0d9c6e;
      --accent-color: #f59e0b;
      --dark-color: #0f172a;
      --darker-color: #0f172a;
      --light-color: #f8fafc;
      --lighter-color: #ffffff;
      --gray-color: #64748b;
      --light-gray: #e2e8f0;
      --border-color: #cbd5e1;
      
      /* Spacing */
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;

      /* Typography */
      --text-xs: 0.75rem;
      --text-sm: 0.875rem;
      --text-base: 1rem;
      --text-lg: 1.125rem;
      --text-xl: 1.25rem;
      --text-2xl: 1.5rem;
      --text-3xl: 1.875rem;
      --text-4xl: 2.25rem;
      --text-5xl: 3rem;
      
      /* Effects */
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Base Reset */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: var(--dark-color);
      background-color: var(--lighter-color);
      overflow-x: hidden;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
    h3 { font-size: var(--text-3xl); }
    h4 { font-size: var(--text-2xl); }
    h5 { font-size: var(--text-xl); }
    h6 { font-size: var(--text-lg); }

    p {
      margin-bottom: var(--space-md);
      color: var(--gray-color);
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: var(--transition-fast);
    }

    a:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }

    /* Utility Classes */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-lg);
    }

    .section {
      padding: var(--space-3xl) 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: var(--space-2xl);
    }

    .section-subtitle {
      display: inline-block;
      color: var(--primary-color);
      font-weight: 600;
      font-size: var(--text-sm);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .section-description {
      max-width: 700px;
      margin: 0 auto;
    }

    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-right { text-align: right; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-sm) var(--space-lg);
      border-radius: 0.375rem;
      font-weight: 500;
      font-size: var(--text-base);
      transition: var(--transition);
      cursor: pointer;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: var(--lighter-color);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-secondary {
      background-color: var(--lighter-color);
      color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .btn-secondary:hover {
      background-color: var(--primary-light);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-icon {
      margin-right: var(--space-xs);
    }

    /* ====================
       COMPONENT STYLES
       ==================== */

    /* Header & Navigation */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: var(--lighter-color);
      box-shadow: var(--shadow);
      z-index: 1000;
      transition: var(--transition);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--space-md) 0;
    }

    .logo img {
      height: 40px;
      width: auto;
      transition: var(--transition);
    }

    .logo:hover img {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      align-items: center;
    }

    .nav-links ul {
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }

    .nav-links a {
      font-weight: 500;
      font-size: var(--text-sm);
      color: var(--dark-color);
      padding: var(--space-xs) 0;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: var(--transition);
    }

    .nav-links a:hover::after,
    .nav-links .active::after {
      width: 100%;
    }

    .nav-links .active {
      color: var(--primary-color);
    }

    /* Dropdown Menu */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--lighter-color);
      min-width: 200px;
      box-shadow: var(--shadow-md);
      border-radius: 0.375rem;
      padding: var(--space-sm) 0;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 100;
      transform: translateY(10px);
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      padding: var(--space-sm) var(--space-lg);
      color: var(--dark-color);
      font-size: var(--text-sm);
      transition: var(--transition-fast);
    }

    .dropdown-content a:hover {
      background-color: var(--light-gray);
      color: var(--primary-color);
      padding-left: var(--space-xl);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 0;
    }

    .mobile-menu-btn span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--dark-color);
      transition: var(--transition);
      transform-origin: center;
    }

    .mobile-menu-btn.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
      padding: 10rem 0 5rem;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-2xl);
      position: relative;
      z-index: 1;
    }

    .hero-text {
      flex: 1;
      max-width: 600px;
    }

    .hero h1 span {
      color: var(--primary-color);
      display: inline-block;
    }

    .hero .subtitle {
      font-size: var(--text-xl);
      margin-bottom: var(--space-xl);
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-lg);
      margin-bottom: var(--space-xl);
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      font-weight: 500;
    }

    .feature-item i {
      color: var(--secondary-color);
      font-size: var(--text-lg);
    }

    .hero-cta {
      display: flex;
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }

    .hero-image {
      flex: 1;
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* Why Choose Us Section */
    .why-choose-us {
      padding: var(--space-3xl) 0;
      background-color: var(--lighter-color);
      position: relative;
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-lg);
      margin: var(--space-2xl) 0;
    }

    .advantage-card {
      background: var(--lighter-color);
      border-radius: var(--rounded-lg);
      padding: var(--space-xl);
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .advantage-card.highlighted {
      border-top: 3px solid var(--primary-color);
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .advantage-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .advantage-card.highlighted:hover {
      transform: translateY(-15px);
    }

    .advantage-icon {
      margin-bottom: var(--space-lg);
      text-align: center;
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      border-radius: 50%;
      color: var(--primary-color);
      font-size: var(--text-2xl);
      transition: var(--transition);
    }

    .advantage-card:hover .icon-wrapper {
      background: var(--primary-color);
      color: var(--lighter-color);
      transform: scale(1.1);
    }

    .advantage-content {
      flex-grow: 1;
      margin-bottom: var(--space-lg);
    }

    .advantage-content h3 {
      font-size: var(--text-xl);
      color: var(--darker-color);
      margin-bottom: var(--space-md);
      text-align: center;
    }

    .advantage-content p {
      color: var(--gray-color);
      text-align: center;
    }

    .advantage-hover {
      height: 0;
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      justify-content: center;
    }

    .advantage-card:hover .advantage-hover {
      height: 40px;
      margin-top: var(--space-md);
    }

    .btn-text {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      color: var(--primary-color);
      font-weight: 600;
      transition: var(--transition-fast);
    }

    .btn-text:hover {
      color: var(--primary-dark);
      gap: var(--space-sm);
    }

    .btn-text i {
      transition: var(--transition-fast);
    }

    .btn-text:hover i {
      transform: translateX(3px);
    }

    .featured-badge {
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--secondary-color);
      color: var(--lighter-color);
      padding: var(--space-xs) var(--space-xl);
      font-size: var(--text-xs);
      font-weight: 600;
      transform: rotate(45deg);
      transform-origin: center;
      width: 140px;
      text-align: center;
      z-index: 1;
    }

    /* AI Solutions Section */
    .ai-section {
      padding: var(--space-3xl) 0;
      background-color: var(--lighter-color);
      position: relative;
      overflow: hidden;
    }

    .ai-solutions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-xl);
      margin-bottom: var(--space-3xl);
    }

    .ai-card {
      background: var(--lighter-color);
      border-radius: var(--rounded-lg);
      padding: var(--space-xl);
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--border-color);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .ai-card.highlighted {
      border-top: 3px solid var(--primary-color);
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .ai-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .ai-card.highlighted:hover {
      transform: translateY(-15px);
    }

    .ai-card-header {
      margin-bottom: var(--space-lg);
      text-align: center;
    }

    .ai-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto var(--space-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      border-radius: 50%;
      padding: var(--space-sm);
    }

    .ai-card h3 {
      font-size: var(--text-xl);
      color: var(--darker-color);
      margin-bottom: var(--space-sm);
    }

    .ai-card-description {
      color: var(--gray-color);
      margin-bottom: var(--space-lg);
      flex-grow: 1;
    }

    .ai-benefits {
      margin-bottom: var(--space-xl);
      list-style: none;
    }

    .ai-benefits li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-sm);
      margin-bottom: var(--space-sm);
      color: var(--dark-color);
    }

    .ai-benefits i {
      color: var(--secondary-color);
      font-size: var(--text-lg);
      margin-top: 3px;
    }

    .ai-card-footer {
      margin-top: auto;
    }

    .btn-block {
      display: block;
      width: 100%;
      text-align: center;
    }

    .highlight-badge {
      position: absolute;
      top: 15px;
      right: -30px;
      background: var(--primary-color);
      color: var(--lighter-color);
      padding: var(--space-xs) var(--space-xl);
      font-size: var(--text-xs);
      font-weight: 600;
      transform: rotate(45deg);
      transform-origin: center;
      width: 140px;
      text-align: center;
      z-index: 1;
    }

    /* Stats Section */
    .ai-stats-container {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      border-radius: var(--rounded-lg);
      padding: var(--space-2xl);
      margin-bottom: var(--space-3xl);
      color: white;
    }

    .ai-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-lg);
      color: white;
    }

    .stat-item {
      text-align: center;
      padding: var(--space-md);
      color: white;
    }

    .stat-number {
      font-size: var(--text-4xl);
      font-weight: 700;
      margin-bottom: var(--space-sm);
      color: white;
    }

    .stat-label {
      font-size: var(--text-sm);
      color: white;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: white;
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
      background-size: cover;
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .btn-large {
      padding: var(--space-md) var(--space-xl);
      font-size: var(--text-lg);
    }

    /* Contact Section */
    .contact-section {
      padding: 5rem 0;
      background-color: #f9f9f9;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-form-container {
      flex: 1;
      min-width: 300px;
      padding: 2.5rem;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
      padding: 2.5rem;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      position: relative;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #4CAF50;
      box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
      outline: none;
    }

    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 10px center;
      background-size: 1em;
    }

    .error-message {
      color: #e74c3c;
      font-size: 0.8rem;
      margin-top: 5px;
      display: none;
    }

    .form-footer {
      margin-top: 1rem;
    }

    .loading-spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: var(--lighter-color);
      animation: spin 1s ease-in-out infinite;
      position: absolute;
      right: var(--space-lg);
      top: 50%;
      transform: translateY(-50%);
    }

    .success-message {
      display: none;
      background-color: #4CAF50;
      color: white;
      padding: 12px;
      border-radius: 5px;
      margin-top: 1rem;
      text-align: center;
    }

    .success-message i {
      margin-right: 8px;
    }

    /* Contact Info */
    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .info-icon {
      background-color: #4CAF50;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .info-content h3 {
      margin-bottom: 0.5rem;
      color: #333;
    }

    .info-content a, .info-content p {
      color: #555;
      display: block;
      margin-bottom: 0.3rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .info-content a:hover {
      color: var(--primary-color);
    }

    /* Footer */
    .footer {
      background-color: var(--darker-color);
      color: var(--lighter-color);
      padding: var(--space-3xl) 0 var(--space-md);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-2xl);
      margin-bottom: var(--space-2xl);
    }

    .footer-col h3 {
      font-size: var(--text-lg);
      margin-bottom: var(--space-lg);
      position: relative;
      padding-bottom: var(--space-sm);
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--primary-color);
    }

    .footer-about {
      color: rgba(255, 255, 255, 0.7);
      font-size: var(--text-sm);
      margin-bottom: var(--space-lg);
    }

    .footer-links li {
      margin-bottom: var(--space-sm);
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      font-size: var(--text-sm);
      transition: var(--transition-fast);
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--lighter-color);
      transform: translateX(5px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: var(--space-lg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-md);
    }

    .copyright {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.5);
    }

    /* Animation for Stats Counter */
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .stat-number.animated {
      animation: countUp 0.5s ease forwards;
    }

    /* Pulse Animation */
    .pulse-animation {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
      }
    }

    /* Legal Page Specific Styles */
    .legal-hero {
      background: linear-gradient(135deg, #0c4e6e 0%, #0c2c3e 100%);
    }
    
    .legal-hero .hero-text h1 {
      color: white;
    }
    
    .legal-hero .subtitle {
      color: rgba(255,255,255,0.9);
      font-size: 1.25rem;
    }
    
    .legal-value .advantage-card {
      min-height: 300px;
    }
    
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .process-step {
      position: relative;
      padding: 2rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .step-number {
      position: absolute;
      top: -20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    .benefits-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    
    .benefits-tab {
      padding: 0.75rem 1.5rem;
      background: #f0f0f0;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .benefits-tab.active {
      background: var(--primary-color);
      color: white;
    }
    
    .benefits-content {
      display: none;
    }
    
    .benefits-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    
    .benefit-card {
      padding: 1.5rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .benefit-card h3 {
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-color);
    }
    
    .partner-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      margin: 3rem 0;
    }
    
    .partner-logos img {
      height: 50px;
      width: auto;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    
    .partner-logos img:hover {
      filter: grayscale(0);
      opacity: 1;
    }
    
    .network-features {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    
    .network-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }
    
    .network-feature i {
      color: var(--secondary-color);
    }
    
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 1rem;
      border-bottom: 1px solid #eee;
    }
    
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 1.5rem 0;
      background: none;
      border: none;
      font-weight: 600;
      font-size: 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    
    .faq-question i {
      transition: transform 0.3s ease;
    }
    
    .faq-question.active i {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      padding: 0 0 1.5rem;
      display: none;
    }
    
    .faq-answer.active {
      display: block;
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
      h1 {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: flex;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--lighter-color);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
      }
      
      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      
      .nav-links ul {
        flex-direction: column;
        width: 100%;
      }
      
      .nav-links li {
        margin: 0 0 var(--space-md) 0;
        width: 100%;
      }
      
      .dropdown-content {
        position: static;
        box-shadow: none;
        padding: var(--space-sm) var(--space-lg);
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: var(--space-sm);
      }
      
      .dropdown.active .dropdown-content {
        display: block;
      }
      
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-features {
        justify-content: center;
      }
      
      .hero-cta {
        justify-content: center;
      }
      
      .process-steps {
        grid-template-columns: 1fr;
      }
      
      .partner-logos {
        gap: 2rem;
      }
      
      .partner-logos img {
        height: 40px;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }
    
    @media (max-width: 576px) {
      .hero {
        padding: 8rem 0 3rem;
      }
      
      h1 {
        font-size: 2rem;
      }
      
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      
      .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }
 