 /* Base Container & Section */
  .csa-section {
    padding: 30px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 550px;
  }
  
  .csa-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  /* Left Column Styling */
  .csa-left-col {
    flex: 1;
    min-width: 320px;
  }

  .csa-badge {
    display: inline-block;
    background: #007bff; /* यहाँ आप अपना मनपसंद कलर कोड डाल सकते हैं */
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
  }

  .csa-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 20px;
  }

  .csa-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
  }

  /* Logos Layout */
  .csa-logos-flex {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .csa-logos-flex img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .csa-logos-flex img:hover {
    transform: scale(1.05);
  }

  /* Right Column & Video Styling */
  .csa-right-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
  }

  .csa-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 9; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: #000;
  }

  .csa-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Product Not Found Styling */
  .not-found-wrapper {
    padding: 100px 20px;
    text-align: center;
  }
  .not-found-text {
    font-size: 28px;
    color: #333;
    font-weight: 600;
  }

  /* Responsive Media Queries */
  @media (max-width: 991px) {
    .csa-title {
      font-size: 34px;
    }
    .csa-section {
      padding: 50px 0;
    }
  }

  @media (max-width: 767px) {
    .csa-container {
      flex-direction: column-reverse; /* मोबाइल पर वीडियो ऊपर दिखेगा और कंटेंट नीचे */
      gap: 30px;
    }
    .csa-title {
      font-size: 28px;
    }
    .csa-left-col, .csa-right-col {
      width: 100%;
    }
    .csa-logos-flex {
      justify-content: center;
    }
    .csa-left-col {
      text-align: center;
    }
  }
  
  /* ================= ENTITIES SECTION CSS ================= */
  .entities-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .entities-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header Styling */
  .entities-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .entities-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
  }

  .entities-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* Grid Layout */
  .entities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  /* Base Card Styling */
  .entity-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .entity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  }

  /* Icon Wrapper */
  .entity-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  }

  .entity-icon svg {
    color: #334155;
    width: 22px;
    height: 22px;
  }

  /* Card Typography */
  .entity-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 30px !important;
  }

  .entity-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
  }

  /* Image Pattern Color Themes */
  .card-blue {
    background-color: #f4f7fc;
  }
  
  .card-yellow {
    background-color: #fdfbf7;
  }

  .card-green {
    background-color: #f5fbf9;
  }

  /* Responsive Queries */
  @media (max-width: 767px) {
    .entities-header h2 {
      font-size: 28px;
    }
    .entities-grid {
      flex-direction: column;
      align-items: center;
    }
    .entity-card {
      width: 100%;
      max-width: 100%;
    }
  }
  
  /* ================= JOURNEY SECTION CSS ================= */
  .journey-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .journey-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px; /* दोनों कॉलम के बीच का स्पेस */
  }

  /* Image Column Styling */
  .journey-image-col {
    flex: 1;
    min-width: 320px;
    max-width: 450px; /* इमेज की चौड़ाई को कंट्रोल करने के लिए */
  }

  .journey-img-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .journey-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Content Column Styling */
  .journey-content-col {
    flex: 1.2;
    min-width: 320px;
  }

  .journey-content-col h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .journey-content-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
  }

  .journey-footer-text {
    margin-top: 30px;
    font-size: 16px;
    color: #0f172a;
  }

  /* Responsive Layout */
  @media (max-width: 991px) {
    .journey-container {
      gap: 40px;
    }
    .journey-content-col h2 {
      font-size: 30px;
    }
  }

  @media (max-width: 767px) {
    .journey-container {
      flex-direction: column; /* मोबाइल पर इमेज ऊपर और टेक्स्ट नीचे आ जाएगा */
      gap: 30px;
      text-align: left;
    }
    .journey-image-col {
      max-width: 100%;
      width: 100%;
    }
    .journey-content-col h2 {
      font-size: 26px;
    }
  }
  
  /* ================= WHY CHOOSE US CSS ================= */
  .choose-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .choose-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Section Title & Subtitle */
  .choose-header {
    text-align: center;
    margin-bottom: 55px;
  }

  .choose-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
  }

  .choose-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* Grid Layout - 3 Columns on Desktop */
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  /* Base Card Styling */
  .choose-card {
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  }

  /* Icon Rounded Wrapper */
  .choose-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }

  .choose-icon svg {
    color: #475569;
  }

  /* Card Headings & Content */
  .choose-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .choose-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
  }

  /* Color Theme Blocks (Matching your screenshot exact order) */
  .c-blue {
    background-color: #f4f7fc; /* Soft Blue */
  }
  
  .c-yellow {
    background-color: #fdfbf7; /* Soft Yellow-ish Cream */
  }

  .c-green {
    background-color: #f5fbf9; /* Soft Light Green */
  }

  .c-peach {
    background-color: #fdf6f2; /* Soft Peach tint for 6th card */
  }

  /* Responsive Breakpoints */
  @media (max-width: 1024px) {
    .choose-grid {
      grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2-कॉलम */
    }
    .choose-header h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 767px) {
    .choose-grid {
      grid-template-columns: 1fr; /* मोबाइल पर 1-कॉलम */
      gap: 20px;
    }
    .choose-header h2 {
      font-size: 26px;
    }
    .choose-card {
      padding: 30px 25px;
    }
  }
  /* ================= DOWNLOAD CTA SECTION CSS ================= */
  .trust-cta-section {
    padding: 90px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .trust-cta-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  /* Left Side - Mockup Area */
  .trust-cta-left {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 320px;
  }

  /* HTML/CSS Template for Checklist Book Mockup */
  .checklist-mockup {
    width: 100%;
    max-width: 380px;
    height: 480px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    position: relative;
    padding: 35px 30px;
    overflow: hidden;
  }

  .mockup-brand {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
  }
  .mockup-brand span { color: #4f46e5; }

  .mockup-sub {
    font-size: 13px;
    color: #64748b;
    margin-top: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mockup-title {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin: 5px 0 15px 0;
    line-height: 1.2;
  }

  .mockup-pathway {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
    max-width: 200px;
  }

  /* Mockup Bottom Abstract Shape */
  .mockup-blue-shape {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 220px;
    height: 280px;
    background: #4f46e5;
    transform: skewX(-25deg);
    z-index: 1;
  }

  /* Right Side - Content Area */
  .trust-cta-right {
    flex: 1.2;
    min-width: 320px;
  }

  .trust-cta-right h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .trust-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 35px;
  }

  /* Highlights Grid (2 Columns) */
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
  }

  .highlight-item {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  /* Individual Pastel Grid Backgrounds */
  .hl-yellow { background-color: #fef9c3; } /* Light Pastel Yellow */
  .hl-green  { background-color: #dcfce7; } /* Light Pastel Green */
  .hl-blue   { background-color: #dbeafe; } /* Light Pastel Blue */
  .hl-pink   { background-color: #fce7f3; } /* Light Pastel Pink */

  /* Button Styling */
  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .download-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .trust-cta-container {
      gap: 40px;
    }
    .trust-cta-right h2 {
      font-size: 30px;
    }
  }

  @media (max-width: 768px) {
    .trust-cta-container {
      flex-direction: column; /* मोबाइल पर पहले इमेज/मॉकअप दिखेगा फिर टेक्स्ट */
      gap: 40px;
    }
    .trust-cta-left, .trust-cta-right {
      width: 100%;
    }
    .highlights-grid {
      grid-template-columns: 1fr; /* मोबाइल पर ग्रिड 1 कॉलम हो जाएगा */
    }
    .trust-cta-right h2 {
      font-size: 26px;
      text-align: left;
    }
    .download-btn {
      display: flex;
      justify-content: center;
      width: 100%;
    }
  }
  
  
  /* ================= RELATED SERVICES CSS ================= */
  .related-services-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .services-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header */
  .services-header {
    text-align: center;
    margin-bottom: 55px;
  }

  .services-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
  }

  .services-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
  }

  /* Grid Layout (3 Columns) */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
.service-card11 {
    padding: 50px 35px 40px 35px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  }

  /* Icon Ring & Circle */
  .service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: #ffffff;
  }

  .service-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #bbf7d0; /* Soft green outline around icons */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
  }

  /* Mini Labels/Badges */
  .service-mini-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
  }

  .badge-blue   { background-color: #dbeafe; color: #1e40af; }
  .badge-indigo { background-color: #e0e7ff; color: #3730a3; }
  .badge-purple { background-color: #f3e8ff; color: #6b21a8; }

  /* Typography */
  .service-card1 h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
  }

  .service-card1 p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 30px;
    flex-grow: 1; /* यह टेक्स्ट छोटा होने पर भी लिंक्स को एक लाइन में रखेगा */
  }

  /* Learn More Link */
  .service-link {
    font-size: 14.5px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .service-link:hover {
    color: #1d4ed8;
  }

  /* Individual Pastel Card Backgrounds */
  .card-light-blue   { background-color: #f4f7fc; }
  .card-light-yellow { background-color: #fdfbf7; }
  .card-light-green  { background-color: #f5fbf9; }

  /* Responsive Layout */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2 कॉलम */
    }
  }

  @media (max-width: 767px) {
    .services-grid {
      grid-template-columns: 1fr; /* मोबाइल पर सिंगल कॉलम */
      gap: 20px;
    }
    .services-header h2 {
      font-size: 28px;
    }
    .service-card1 {
      padding: 45px 25px 35px 25px;
    }
  }
  /* ================= RELATED SERVICES CSS ================= */
  .related-services-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .services-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header */
  .services-header {
    text-align: center;
    margin-bottom: 55px;
  }

  .services-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
  }

  .services-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
  }

  /* Grid Layout (3 Columns) */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  /* Base Card Styling */
  .service-card1 {
    padding: 50px 35px 40px 35px;
    border-radius: 8px;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  }

  /* Icon Ring & Circle */
  .service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: #ffffff;
  }

  .service-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #bbf7d0; /* Soft green outline */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
  }

  /* Mini Labels/Badges */
  .service-mini-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
  }

  .badge-blue   { background-color: #dbeafe; color: #1e40af; }
  .badge-indigo { background-color: #e0e7ff; color: #3730a3; }
  .badge-purple { background-color: #f3e8ff; color: #6b21a8; }

  /* Typography */
  .service-card1 h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
  }

  .service-card1 p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 30px;
    flex-grow: 1;
  }

  /* Learn More Link */
  .service-link {
    font-size: 14.5px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .service-link:hover {
    color: #1d4ed8;
  }

  /* Individual Pastel Card Backgrounds */
  .card-light-blue   { background-color: #f4f7fc; }
  .card-light-yellow { background-color: #fdfbf7; }
  .card-light-green  { background-color: #e2f7f0; } /* Matches Screenshot green perfectly */

  /* ================= BOTTOM CONTROLS FOOTER CSS ================= */
  .services-controls-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }

  /* Left Toggle Container */
  .toggle-layout-buttons {
    background-color: #f1f5f9;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    gap: 2px;
  }

  .toggle-btn {
    border: none;
    background: transparent;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
  }

  .active-toggle {
    background-color: #2563eb;
    color: #ffffff;
  }

  /* Right Controls: Progress Line & Arrows */
  .slider-navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-grow: 0.6; /* Adjust width dynamically */
    justify-content: flex-end;
  }

  .slider-progress-bar {
    height: 3px;
    background-color: #e2e8f0;
    border-radius: 2px;
    flex-grow: 1;
    position: relative;
    max-width: 400px;
  }

  .slider-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%; /* Represents current slider view step position */
    background-color: #2563eb;
    border-radius: 2px;
  }

  .slider-arrows {
    display: flex;
    gap: 8px;
  }

  .arrow-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 4px;
    color: #64748b;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .arrow-btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    background-color: #f8fafc;
  }

  /* Responsive Layout */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .services-controls-footer {
      flex-direction: column;
      gap: 25px;
      align-items: flex-start;
    }
    .slider-navigation-wrapper {
      width: 100%;
      justify-content: space-between;
    }
    .slider-progress-bar {
      max-width: 100%;
    }
  }
  
  /* ================= CLEAN STRAIGHT FAQ CSS ================= */
  .faq-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .faq-container {
    width: 90%;
    max-width: 850px; /* नो-साइडबार लेआउट के लिए कंटेनर की चौड़ाई को सीमित रखा है */
    margin: 0 auto;
  }

  /* Header */
  .faq-header {
    text-align: center;
    margin-bottom: 45px;
  }

  .faq-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
  }

  /* Accordion Group Box */
  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Single FAQ Row Block */
  .faq-item {
    background-color: #f8fafc; /* Subtle off-white box matching original layout */
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  /* Question Trigger Button */
  .faq-question {
    width: 100%;
    padding: 22px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16.5px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s ease;
  }

  .faq-question:hover {
    color: #2563eb;
  }

  /* Toggle Arrow Animation */
  .faq-arrow {
    color: #64748b;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  /* Answer Container block styling */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
  }

  .faq-answer p {
    padding: 0 25px 22px 25px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
  }

  /* Active Open State Class (Can be toggled via Simple JS/PHP) */
  .faq-item.active {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    border-color: #cbd5e1;
  }

  .faq-item.active .faq-answer {
    max-height: 200px; /* Safe expanded limit */
  }

  .faq-item.active .faq-arrow {
    transform: rotate(0deg); /* Arrow points up */
    color: #0f172a;
  }

  /* Responsive styling updates */
  @media (max-width: 767px) {
    .faq-header h2 {
      font-size: 28px;
    }
    .faq-question {
      padding: 18px 20px;
      font-size: 15.5px;
    }
    .faq-answer p {
      padding: 0 20px 18px 20px;
    }
  }