/* Audit-specific styles */
    .audit-hero {
      background: linear-gradient(135deg, #0c5e7a 0%, #0c84c0 100%);
      color: white;
      padding: 8rem 0 5rem;
      position: relative;
      overflow: hidden;
    }
    
    .audit-hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    
    .audit-hero .subtitle {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      opacity: 0.9;
    }
    
    .ai-badge {
      display: inline-block;
      background-color: #10b981;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    
    .value-proposition {
      background-color: #f8fafc;
      padding: 4rem 0;
    }
    
    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .value-card {
      background: white;
      border-radius: 0.5rem;
      padding: 2rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border-left: 4px solid var(--primary-color);
    }
    
    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .value-card h3 {
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }
    
    .service-scope {
      padding: 4rem 0;
      background-color: white;
    }
    
    .service-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .service-tab {
      padding: 0.75rem 1.5rem;
      background-color: #f1f5f9;
      border: none;
      border-radius: 0.375rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .service-tab:hover {
      background-color: #e2e8f0;
    }
    
    .service-tab.active {
      background-color: var(--primary-color);
      color: white;
    }
    
    .service-content {
      display: none;
      animation: fadeIn 0.5s ease;
    }
    
    .service-content.active {
      display: block;
    }
    
    .service-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .service-feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .service-feature i {
      color: var(--primary-color);
      font-size: 1.25rem;
      margin-top: 0.25rem;
    }
    
    .ai-tools-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: white;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }
    
    .ai-tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .ai-tool-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 0.5rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .ai-tool-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
    }
    
    .ai-tool-card h3 {
      color: white;
      margin-bottom: 0.5rem;
    }
    
    .ai-tool-card p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
    }
    
    .clientele-section {
      padding: 4rem 0;
      background-color: #f8fafc;
    }
    
    .benefits-section {
      padding: 4rem 0;
      background-color: white;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .benefit-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
      background: #f8fafc;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .benefit-card:hover {
      background: #f1f5f9;
      transform: translateY(-5px);
    }
    
    .benefit-icon {
      width: 50px;
      height: 50px;
      background-color: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    
    .cta-audit {
      background: linear-gradient(135deg, #10b981 0%, #0d9c6e 100%);
      color: white;
      padding: 4rem 0;
      text-align: center;
    }
    
    .consultant-cta {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      color: white;
      padding: 4rem 0;
      text-align: center;
    }
    
    .faq-section {
      padding: 4rem 0;
      background-color: #f8fafc;
    }
    
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 1rem;
      background: white;
      border-radius: 0.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    
    .faq-question {
      padding: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 1.5rem 1.5rem;
      max-height: 500px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .audit-hero {
        padding: 6rem 0 3rem;
        text-align: center;
      }
      
      .service-tabs {
        flex-direction: column;
        align-items: stretch;
      }
      
      .service-tab {
        width: 100%;
      }
    }