
    /* Section Background */
    .about-section {
        background-color: #ffffff !important;
        position: relative;
        z-index: 1;
    }

    /* Black Text Overrides */
    .about-section h1,
    .about-section h2,
    .about-section h3,
    .about-section h5,
    .about-section p {
        color: #111111 !important; /* Rich Black */
    }

    /* Light Greenish Accents */
    .about-section .section-title {
        color: #12879f !important; /* Sage / Forest Green Accent */
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    /* Custom Light Greenish Counter Box & Border */
    .about-section .counter-box {
        width: 120px;
        height: 120px;
        background-color: #f1f8f5; /* Soft Light Greenish Tint */
        border: 5px solid #a5d6a7 !important; /* Light Green Border */
    }

    .about-section .counter-number,
    .about-section .accent-text {
        color: #12879f !important; /* Darker Green for Contrast */
    }

    /* Light Green Button */
    .about-section .btn-light-green {
        background-color: #a5d6a7;
        color: #000000 !important;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
    }

    .about-section .btn-light-green:hover {
        background-color: #81c784;
        color: #000000 !important;
    }

    /* Overlapping Images */
    .about-img {
        position: relative;
        height: 100%;
        min-height: 400px;
    }

    .about-img img:first-child {
        position: relative;
        z-index: 2;
        width: 80%;
        border-radius: 8px;
    }

    .about-img img:last-child {
        position: absolute;
        top: 25%;
        right: 0;
        width: 60%;
        z-index: 1;
        border: 8px solid #ffffff;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* Force Solid White Section Background */
    .feature-section {
        background-color: #ffffff !important;
        position: relative;
        z-index: 1;
    }

    /* Black Text Overrides */
    .feature-section h1,
    .feature-section h3,
    .feature-section p {
        color: #111111 !important; /* Rich Black */
    }

    .feature-section p {
        opacity: 0.85; /* Slightly softer black for body copy readability */
    }

    /* Light Greenish Accents */
    .feature-section .section-title {
        color: #2e7d32 !important; /* Sage / Forest Green Accent */
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    /* Icon Styling & Light Green Background Wrapper */
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        background-color: #f1f8f5; /* Light greenish tint */
        border: 2px solid #a5d6a7; /* Light green border */
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-icon-wrapper img {
        max-width: 32px;
        max-height: 32px;
    }

    /* Overlapping Images Layout */
    .feature-img {
        position: relative;
        height: 100%;
        min-height: 400px;
    }

    .feature-img img:first-child {
        position: relative;
        z-index: 2;
        width: 80%;
        border-radius: 8px;
    }

    .feature-img img:last-child {
        position: absolute;
        top: 25%;
        right: 0;
        width: 60%;
        z-index: 1;
        border: 8px solid #ffffff;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* Scope box-sizing ONLY to this component */
    .tstm-section,
    .tstm-section * {
      box-sizing: border-box;
    }

    /* 100% FULL WIDTH WHITE SECTION */
    .tstm-section {
      width: 100%;
      background-color: #ffffff;
      padding: 80px 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    /* INNER CONTAINER FOR CENTERING CONTENT */
    .tstm-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* HEADER (CENTERED) */
    .tstm-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .tstm-sub-heading {
      color: #2563eb;
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
      display: block;
    }

    .tstm-title {
      color: #0f172a;
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
    }

    /* SLIDER WRAPPER */
    .tstm-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    /* SCROLL TRACK */
    .tstm-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 16px 4px;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE / Edge */
      width: 100%;
    }

    .tstm-track::-webkit-scrollbar {
      display: none; /* Chrome / Safari */
    }

    /* CARDS (ALL TEXT CENTERED) */
    .tstm-card {
      flex: 0 0 calc(33.333% - 16px);
      min-width: 280px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center; /* CENTER TEXT INSIDE CARD */
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .tstm-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.08);
      border-color: #cbd5e1;
    }

    /* STARS (CENTERED) */
    .tstm-stars {
      color: #f59e0b;
      font-size: 1.1rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
      text-align: center;
    }

    /* QUOTE (CENTERED) */
    .tstm-quote {
      color: #334155;
      font-size: 0.975rem;
      line-height: 1.6;
      margin: 0 0 24px 0;
      text-align: center;
    }

    /* AUTHOR INFO (CENTERED COLUMN) */
    .tstm-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 20px;
      text-align: center;
    }

    .tstm-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0;
    }

    .tstm-details h4 {
      color: #0f172a;
      font-size: 0.95rem;
      font-weight: 600;
      margin: 0 0 2px 0;
    }

    .tstm-details p {
      color: #64748b;
      font-size: 0.85rem;
      margin: 0;
    }

    /* ARROWS */
    .tstm-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #cbd5e1;
      color: #0f172a;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 20;
      transition: all 0.2s ease;
      padding: 0;
    }

    .tstm-nav-btn:hover {
      background: #2563eb;
      color: #ffffff;
      border-color: #2563eb;
    }

    .tstm-nav-btn svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
    }

    .tstm-prev { left: -20px; }
    .tstm-next { right: -20px; }

    /* RESPONSIVE LAYOUT */
    @media (max-width: 1024px) {
      .tstm-card { flex: 0 0 calc(50% - 12px); }
    }

    @media (max-width: 640px) {
      .tstm-card { flex: 0 0 100%; }
      .tstm-prev { left: 0px; }
      .tstm-next { right: 0px; }
    }
