#custom-container-production-insurance-faq {
      font-family: 'Poppins', sans-serif !important;
      max-width: 1200px !important;
      margin: 0 auto !important;
      padding: 20px !important;
      color: #333 !important;
      line-height: 1.6 !important;
    }
    
    .custom-header {
      text-align: center !important;
      margin-bottom: 40px !important;
      position: relative !important;
      padding-bottom: 15px !important;
    }
    
    .custom-header h1 {
      color: var(--faster-accent-color, #bf004d) !important;
      font-size: 42px !important;
      margin-bottom: 15px !important;
      font-weight: 700 !important;
      position: relative !important;
      display: inline-block !important;
    }
    
    .custom-header h1:after {
      content: "" !important;
      position: absolute !important;
      width: 60% !important;
      height: 4px !important;
      background-color: var(--faster-accent-color, #bf004d) !important;
      bottom: -10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      border-radius: 2px !important;
    }
    
    .custom-header p {
      font-size: 18px !important;
      color: #666 !important;
      max-width: 800px !important;
      margin: 0 auto !important;
    }
    
    .custom-search-container {
      max-width: 600px !important;
      margin: 0 auto 40px auto !important;
      position: relative !important;
    }
    
    .custom-search-input {
      width: 100% !important;
      padding: 15px 20px !important;
      border: 2px solid #ddd !important;
      border-radius: 50px !important;
      font-size: 16px !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
    }
    
    .custom-search-input:focus {
      outline: none !important;
      border-color: var(--faster-accent-color, #bf004d) !important;
      box-shadow: 0 4px 12px rgba(191,0,77,0.15) !important;
    }
    
    .custom-search-icon {
      position: absolute !important;
      right: 20px !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      color: #999 !important;
      font-size: 20px !important;
    }
    
    .custom-intro {
      background-color: #f9f9f9 !important;
      padding: 30px !important;
      border-radius: 10px !important;
      margin-bottom: 40px !important;
      border-left: 5px solid var(--faster-accent-color, #bf004d) !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    }
    
    .custom-intro p {
      margin-bottom: 15px !important;
      line-height: 1.7 !important;
      font-size: 16px !important;
    }
    
    .custom-intro p:last-child {
      margin-bottom: 0 !important;
    }
    
    .custom-category-tabs {
      display: flex !important;
      justify-content: center !important;
      flex-wrap: wrap !important;
      gap: 15px !important;
      margin-bottom: 40px !important;
    }
    
    .custom-tab {
      padding: 12px 25px !important;
      background-color: #f1f1f1 !important;
      border-radius: 30px !important;
      cursor: pointer !important;
      font-weight: 500 !important;
      transition: all 0.3s ease !important;
      font-size: 15px !important;
      border: none !important;
      color: #555 !important;
    }
    
    .custom-tab:hover {
      background-color: #e0e0e0 !important;
      transform: translateY(-2px) !important;
    }
    
    .custom-tab.active {
      background-color: var(--faster-accent-color, #bf004d) !important;
      color: white !important;
      box-shadow: 0 5px 15px rgba(191,0,77,0.2) !important;
    }
    
    .custom-faq-section {
      margin-bottom: 50px !important;
    }
    
    .custom-faq-category {
      display: none !important;
    }
    
    .custom-faq-category.active {
      display: block !important;
      animation: fadeIn 0.5s ease !important;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .custom-faq-item {
      margin-bottom: 15px !important;
      border-radius: 8px !important;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
      overflow: hidden !important;
      transition: all 0.3s ease !important;
      border: 1px solid #eee !important;
    }
    
    .custom-faq-item:hover {
      box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
      transform: translateY(-2px) !important;
    }
    
    .custom-faq-question {
      font-weight: 600 !important;
      color: #333 !important;
      cursor: pointer !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      font-size: 17px !important;
      padding: 18px 20px !important;
      background-color: #fff !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-faq-icon {
      width: 20px !important;
      height: 20px !important;
      position: relative !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-faq-icon:before, .custom-faq-icon:after {
      content: "" !important;
      position: absolute !important;
      background-color: var(--faster-accent-color, #bf004d) !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-faq-icon:before {
      width: 100% !important;
      height: 2px !important;
      top: 50% !important;
      left: 0 !important;
      transform: translateY(-50%) !important;
    }
    
    .custom-faq-icon:after {
      width: 2px !important;
      height: 100% !important;
      top: 0 !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
    }
    
    .custom-faq-item.active .custom-faq-icon:after {
      transform: translateX(-50%) rotate(90deg) !important;
      opacity: 0 !important;
    }
    
    .custom-faq-item.active .custom-faq-question {
      color: var(--faster-accent-color, #bf004d) !important;
      background-color: #fff9fb !important;
      border-bottom: 1px solid #ffe0ec !important;
    }
    
    .custom-faq-answer {
      max-height: 0 !important;
      overflow: hidden !important;
      transition: max-height 0.5s ease !important;
      background-color: #fff !important;
      padding: 0 20px !important;
    }
    
    .custom-faq-item.active .custom-faq-answer {
      max-height: 1000px !important;
      padding: 20px !important;
    }
    
    .custom-faq-answer p {
      margin-bottom: 15px !important;
      line-height: 1.7 !important;
    }
    
    .custom-faq-answer p:last-child {
      margin-bottom: 0 !important;
    }
    
    .custom-service-grid {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 30px !important;
      margin: 50px 0 !important;
    }
    
    .custom-service-card {
      background-color: #fff !important;
      border-radius: 10px !important;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
      overflow: hidden !important;
      transition: all 0.3s ease !important;
      position: relative !important;
      z-index: 1 !important;
      border: 1px solid #eee !important;
    }
    
    .custom-service-card:hover {
      transform: translateY(-10px) !important;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
    
    .custom-service-card:before {
      content: "" !important;
      position: absolute !important;
      width: 100% !important;
      height: 5px !important;
      background-color: var(--faster-accent-color, #bf004d) !important;
      top: 0 !important;
      left: 0 !important;
      z-index: 1 !important;
    }
    
    .custom-service-icon {
      width: 70px !important;
      height: 70px !important;
      border-radius: 50% !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      margin: 0 auto 20px auto !important;
      background-color: #fff9fb !important;
      font-size: 30px !important;
      color: var(--faster-accent-color, #bf004d) !important;
      box-shadow: 0 5px 15px rgba(191,0,77,0.15) !important;
    }
    
    .custom-service-content {
      padding: 30px !important;
    }
    
    .custom-service-title {
      font-size: 20px !important;
      margin-bottom: 15px !important;
      font-weight: 600 !important;
      color: #333 !important;
      text-align: center !important;
    }
    
    .custom-service-desc {
      margin-bottom: 20px !important;
      font-size: 15px !important;
      color: #666 !important;
    }
    
    .custom-service-features {
      list-style-type: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    
    .custom-service-feature {
      display: flex !important;
      align-items: center !important;
      margin-bottom: 10px !important;
      font-size: 14px !important;
    }
    
    .custom-check-icon {
      color: var(--faster-accent-color, #bf004d) !important;
      margin-right: 10px !important;
      font-size: 16px !important;
    }
    
    .custom-service-link {
      display: inline-block !important;
      margin-top: 20px !important;
      padding: 10px 25px !important;
      background-color: var(--faster-accent-color, #bf004d) !important;
      color: white !important;
      text-decoration: none !important;
      border-radius: 30px !important;
      font-weight: 500 !important;
      font-size: 15px !important;
      transition: all 0.3s ease !important;
      text-align: center !important;
    }
    
    .custom-service-link:hover {
      background-color: #9c003f !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 5px 15px rgba(191,0,77,0.3) !important;
    }
    
    .custom-coverage-section {
      margin-top: 60px !important;
      margin-bottom: 60px !important;
      background-color: #f9f9f9 !important;
      padding: 50px 30px !important;
      border-radius: 15px !important;
      position: relative !important;
      overflow: hidden !important;
    }
    
    .custom-coverage-section:before {
      content: "" !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 5px !important;
      background: linear-gradient(to right, var(--faster-accent-color, #bf004d), #ff6699) !important;
    }
    
    .custom-coverage-header {
      text-align: center !important;
      margin-bottom: 40px !important;
    }
    
    .custom-coverage-header h2 {
      color: var(--faster-accent-color, #bf004d) !important;
      margin-bottom: 15px !important;
      font-size: 32px !important;
      font-weight: 700 !important;
    }
    
    .custom-coverage-header p {
      max-width: 800px !important;
      margin: 0 auto !important;
      font-size: 16px !important;
      color: #666 !important;
      line-height: 1.7 !important;
    }
    
    .custom-coverage-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
      gap: 25px !important;
    }
    
    .custom-coverage-item {
      background-color: #fff !important;
      padding: 25px !important;
      border-radius: 10px !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
      border: 1px solid #eee !important;
      height: 100% !important;
      display: flex !important;
      flex-direction: column !important;
    }
    
    .custom-coverage-item:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }
    
    .custom-coverage-icon {
      width: 60px !important;
      height: 60px !important;
      border-radius: 10px !important;
      background-color: #fff9fb !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      margin-bottom: 20px !important;
      color: var(--faster-accent-color, #bf004d) !important;
      font-size: 24px !important;
    }
    
    .custom-coverage-item h3 {
      color: #333 !important;
      margin-bottom: 15px !important;
      font-size: 20px !important;
      font-weight: 600 !important;
      border-bottom: 2px solid #f0f0f0 !important;
      padding-bottom: 10px !important;
    }
    
    .custom-coverage-item p {
      line-height: 1.7 !important;
      margin-bottom: 15px !important;
      font-size: 15px !important;
      color: #666 !important;
      flex-grow: 1 !important;
    }
    
    .custom-coverage-link {
      display: inline-block !important;
      padding: 8px 20px !important;
      background-color: #fff !important;
      color: var(--faster-accent-color, #bf004d) !important;
      border: 1px solid var(--faster-accent-color, #bf004d) !important;
      border-radius: 5px !important;
      text-decoration: none !important;
      font-weight: 500 !important;
      font-size: 14px !important;
      transition: all 0.3s ease !important;
      text-align: center !important;
      align-self: flex-start !important;
    }
    
    .custom-coverage-link:hover {
      background-color: var(--faster-accent-color, #bf004d) !important;
      color: white !important;
    }
    
    .custom-cta-section {
      background: linear-gradient(to right, var(--faster-accent-color, #bf004d), #ff608d) !important;
      color: white !important;
      padding: 40px !important;
      border-radius: 15px !important;
      text-align: center !important;
      margin: 60px 0 !important;
      box-shadow: 0 10px 30px rgba(191,0,77,0.2) !important;
    }
    
    .custom-cta-title {
      font-size: 28px !important;
      font-weight: 700 !important;
      margin-bottom: 15px !important;
    }
    
    .custom-cta-text {
      font-size: 16px !important;
      max-width: 700px !important;
      margin: 0 auto 25px auto !important;
      line-height: 1.7 !important;
    }
    
    .custom-cta-buttons {
      display: flex !important;
      gap: 15px !important;
      justify-content: center !important;
      flex-wrap: wrap !important;
    }
    
    .custom-primary-btn {
      padding: 12px 30px !important;
      background-color: white !important;
      color: var(--faster-accent-color, #bf004d) !important;
      border-radius: 30px !important;
      font-weight: 600 !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
      font-size: 16px !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    }
    
    .custom-primary-btn:hover {
      transform: translateY(-3px) !important;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    }
    
    .custom-secondary-btn {
      padding: 12px 30px !important;
      background-color: transparent !important;
      color: white !important;
      border: 2px solid white !important;
      border-radius: 30px !important;
      font-weight: 600 !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
      font-size: 16px !important;
    }
    
    .custom-secondary-btn:hover {
      background-color: white !important;
      color: var(--faster-accent-color, #bf004d) !important;
      transform: translateY(-3px) !important;
    }
    
    .custom-partners {
      display: flex !important;
      justify-content: center !important;
      gap: 30px !important;
      flex-wrap: wrap !important;
      margin: 40px 0 !important;
      align-items: center !important;
    }
    
    .custom-partner-logo {
      height: 50px !important;
      filter: grayscale(100%) !important;
      opacity: 0.6 !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-partner-logo:hover {
      filter: grayscale(0%) !important;
      opacity: 1 !important;
    }
    
    @media (max-width: 992px) {
      .custom-service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      
      .custom-header h1 {
        font-size: 36px !important;
      }
      
      .custom-coverage-header h2 {
        font-size: 28px !important;
      }
    }
    
    @media (max-width: 768px) {
      .custom-header h1 {
        font-size: 32px !important;
      }
      
      .custom-header p {
        font-size: 16px !important;
      }
      
      .custom-coverage-grid {
        grid-template-columns: 1fr !important;
      }
      
      .custom-service-grid {
        grid-template-columns: 1fr !important;
      }
      
      .custom-faq-question {
        font-size: 16px !important;
        padding: 15px !important;
      }
      
      .custom-cta-title {
        font-size: 24px !important;
      }
      
      .custom-search-input {
        padding: 12px 15px !important;
      }
      
      .custom-tab {
        padding: 10px 20px !important;
        font-size: 14px !important;
      }
    }
    
    @media (max-width: 576px) {
      .custom-header h1 {
        font-size: 28px !important;
      }
      
      .custom-cta-buttons {
        flex-direction: column !important;
      }
      
      .custom-partners {
        gap: 20px !important;
      }
      
      .custom-partner-logo {
        height: 40px !important;
      }
    }
