  .section-title {
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
  }

  .brand-container {
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 15px 10px rgb(16 8 16 / 5%);
    overflow: hidden;
  }

  .brand-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .brand-link {
    text-decoration: none;
    color: inherit;
  }

  .brand-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .brand-title {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: #333;
  }

  .brand-container .h-100 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
  }

  .section-title-wrapper {
    margin-bottom: 10px;
  }

  .com-header {
    background-image: url('assits/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    /* max-width: 1200px; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
  }

  .com-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 80, 180, 0.8) 0%, rgba(0, 40, 100, 0.9) 100%);
  }

  .com-header-data-wrapper {
    /* min-height: 400px; */
    color: white;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
  }

  .com-header-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
  }

  .com-header-desc {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .com-header-title {
      font-size: 2.2rem;
    }

    .com-header-desc {
      font-size: 1.1rem;
    }

    .com-header-data-wrapper {
      min-height: 300px;
    }
  }

  @media (max-width: 576px) {
    .com-header-title {
      font-size: 1.8rem;
    }

    .com-header-desc {
      font-size: 1rem;
    }
  }

  :root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4bb543;
  }

  /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        } */

  .section-faqs {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 0 auto;
    /* max-width: 1000px; */
  }

  .section-title-wrapper {
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }

  .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
  }

  .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .accordion {
    border: none;
    border-radius: 12px;
    overflow: hidden;
  }

  .accordion-item {
    background: white;
    border: none;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
  }

  .accordion-item:last-child {
    border-bottom: none;
  }

  .accordion-header {
    margin: 0;
  }

  .accordion-button {
    background-color: white;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: rgba(67, 97, 238, 0.05);
    color: var(--primary);
    border-bottom: 1px solid rgba(67, 97, 238, 0.1);
  }

  .accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234361ee'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }

  .accordion-button:not(.collapsed):after {
    transform: rotate(180deg) scale(1.2);
  }

  .accordion-button:hover {
    background-color: rgba(67, 97, 238, 0.08);
  }

  .accordion-collapse {
    border: none;
  }

  .accordion-body {
    padding: 20px 25px;
    background-color: rgba(67, 97, 238, 0.03);
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    border-top: 1px solid rgba(67, 97, 238, 0.05);
  }

  .faq-icon {
    margin-right: 12px;
    color: var(--primary);
    font-size: 1.2rem;
  }

  .contact-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
  }

  .contact-info h5 {
    margin-bottom: 15px;
    font-weight: 600;
  }

  .contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .contact-info i {
    margin-right: 8px;
    font-size: 1.1rem;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }

    .accordion-button {
      padding: 16px 20px;
      font-size: 1rem;
    }

    .accordion-body {
      padding: 16px 20px;
    }

    .contact-info a {
      display: block;
      margin: 8px 0;
    }
  }

  .section-title {
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto;
  }

  .model-container {
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #eaeaea;
  }

  .model-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
  }

  .model-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }

  .model-icon {
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .model-title {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    color: var(--dark-color);
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .model-icon {
      max-height: 100px;
    }

    .model-title {
      font-size: 0.85rem;
    }
  }

  /* Service Selection Styles */
  .device-info-section, .services-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    height: fit-content;
  }

  .section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .section-subtitle i {
    color: var(--primary);
    margin-right: 8px;
  }

  .device-model-container {
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #eaeaea;
  }

  .device-model-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }

  .device-model-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }

  .device-model-icon {
    max-height: 80px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .device-model-title {
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
    color: #333;
    font-size: 0.9rem;
  }

  /* Device Info Card Styles */
  .device-info-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
  }

  .device-image {
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .device-info-card h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
  }


  /* Service Selection Components */
  .issue-container {
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #eaeaea;
    cursor: pointer;
    position: relative;
  }

  .issue-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }

  .issue-container.selected {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
  }

  .checkbox-container {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
  }

  .service-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #ddd;
    background-color: white;
    cursor: pointer;
  }

  .service-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }

  .issue-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 auto 8px;
    display: block;
  }

  .issue-title {
    text-align: center;
    font-weight: 500;
    color: #333;
    font-size: 0.8rem;
    margin-top: 5px;
  }

  .selected-count {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
  }

  .continue-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
  }

  .continue-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.4);
  }

  .continue-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }

  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    .device-info-section, .services-section {
      padding: 15px;
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .device-model-icon {
      max-height: 60px;
    }

    .device-model-title {
      font-size: 0.8rem;
    }

    .issue-icon {
      width: 35px;
      height: 35px;
    }

    .issue-title {
      font-size: 0.75rem;
    }

    .selected-count {
      padding: 8px 16px;
      font-size: 0.8rem;
    }

    .continue-btn {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .device-info-section, .services-section {
      padding: 12px;
    }

    .section-subtitle {
      font-size: 1rem;
    }

    .device-model-icon {
      max-height: 50px;
    }

    .issue-icon {
      width: 30px;
      height: 30px;
    }

    .issue-title {
      font-size: 0.7rem;
    }
  }