    /* Solution Page Specific Styles - Updated */

    .solution-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px clamp(20px, 4vw, 60px) 60px;
    }

    /* Section Styling */
    .solution-section {
        margin-bottom: 80px;
    }

    .solution-section.intro-section {
        margin-bottom: 60px;
        text-align: center;
    }

    .solution-section.journey-section {
        margin-bottom: 80px;
    }

    .solution-header {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
        text-align: center;
    }

    .solution-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(24px, 2vw, 32px);
        font-weight: 600;
        color: #3B3C44;
        margin-bottom: 50px;
        text-align: center;
        line-height: 1.3;
    }

    .grade-indicator {
        font-size: 35px;
        font-weight: bold;
    }

    /* Grade-specific colors for indicators */
    .grade-indicator.grade-9 {
        color: #E85BAD;
    }

    .grade-indicator.grade-10 {
        color: #3A9BB5;
    }

    .grade-indicator.grade-11 {
        color: #4A8B66;
    }

    .grade-indicator.support {
        color: #D4713A;
    }

    .solution-content {
        text-align: left;
    }

    .solution-content > p {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(14px, 1.2vw, 18px);
        line-height: 1.6;
        color: #3B3C44;
        margin-bottom: 30px;
        max-width: 1200px;
    }

    /* Introduction Section - Updated to match h2 styling */
    .stack-title {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(24px, 2vw, 32px);
        font-weight: 400;
        line-height: 1.5;
        color: #3B3C44;
        text-align: center;
        margin-bottom: 25px;
        margin-top: 25px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .stack-definition {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(12px, 2vw, 22px);
        font-weight: 400;
        line-height: 1.5;
        color: #3B3C44;
        text-align: center;
        margin-bottom: 50px;
        margin-top: 25px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .intro-video-container {
        display: flex;
        justify-content: center;
        margin: 50px 0 100px;
    }

    .intro-video {
        width: 100%;
        max-width: 800px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .stack-definition {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(24px, 2vw, 24px);
        font-weight: 400;
        line-height: 1.5;
        color: #3B3C44;
        text-align: center;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Feature Items - Updated proportions */
    .feature-item {
        display: flex;
        gap: 40px;
        align-items: center;
        margin-bottom: 125px;
    }

    .feature-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-video {
        flex: 4; /* Much larger proportion for videos */
        display: flex;
        justify-content: center;
    }

    .feature-video video {
        width: 100%;
        max-width: 1500px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-description {
        flex: 1.25; /* Smaller proportion for captions */
        padding: 0 20px;
    }

    .feature-description p {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(14px, 1.1vw, 16px);
        line-height: 1.6;
        color: #3B3C44;
        margin: 0;
    }

    /* Support System Section - Removed background card styling */
    .support-section .solution-content {
        /* Remove background styling */
    }

    .support-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .support-item {
        display: flex;
        gap: 40px;
        align-items: center;
        margin-bottom: 50px;
    }

    .support-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .support-image {
        flex: 3.5; /* Same proportions as videos */
        display: flex;
        justify-content: center;
    }

    .support-img {
        width: 100%;
        max-width: 650px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .support-description {
        flex: 1.5; /* Same proportion as captions */
        padding: 0 20px;
    }

    .support-description h4 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(16px, 1.2vw, 18px);
        font-weight: 600;
        color: #D4713A;
        margin-bottom: 12px;
    }

    .support-description p {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(14px, 1.1vw, 16px);
        line-height: 1.5;
        color: #3B3C44;
        margin: 0;
    }

    /* CTA Section */
    .cta-section {
        margin-top: 100px;
    }

    .cta-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .cta-divider {
        flex: 1;
        height: 2px;
        background: #ccc;
        border: none;
        margin-top: 12px;
        margin-bottom: 40px;
        width: 100%;
    }

    .cta-heading {
        font-size: clamp(22px, 2.2vw, 28px);
        font-weight: 600;
        color: #3B3C44;
        font-family: 'Poppins', sans-serif;
        margin: 0;
    }

    .scroll-to-top {
        width: 120px;
        height: auto;
        cursor: pointer;
        margin-top: 6px;
        transition: transform 0.2s ease;
    }

    .scroll-to-top:hover {
        transform: translateY(-4px);
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .cta-card {
        text-align: center;
    }

    .cta-img {
        width: 100%;
        max-width: 460px;
        border-radius: 16px;
        margin-bottom: 16px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .cta-description {
        font-size: clamp(20px, 1.2vw, 22px);
        color: #3B3C44;
        margin-bottom: 35px;
        line-height: 1.5;
        font-weight: 500;
    }

    /* CTA Buttons */
    .cta-button {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
        border: 2px solid;
        color: white;
        font-family: 'Poppins', sans-serif;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .cta-process {
        background: #D4713A;
        border-color: #D4713A;
    }

    .cta-process:hover {
        background: #DE8554;
    }

    .cta-research {
        background: #4A8B66;
        border-color: #4A8B66;
    }

    .cta-research:hover {
        background: #5BA077;
    }

    /* Footer */
    .page-footer {
        background: #f8f8f8;
        text-align: center;
        padding: 30px 10px;
        font-size: 14px;
        color: #999;
        font-family: 'Poppins', sans-serif;
        margin-top: 30px;
        border-radius: 16px;
    }

    .final-illustration {
        display: flex;
        justify-content: center;
        margin: 100px 0 120px;
    }

    .final-image {
        max-width: 800px;
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
        .solution-wrapper {
            padding: 30px clamp(16px, 4vw, 40px) 40px;
        }

        .solution-section {
            margin-bottom: 60px;
        }

        .feature-item,
        .feature-item:nth-child(even),
        .support-item,
        .support-item:nth-child(even) {
            flex-direction: column;
            gap: 25px;
        }

        .feature-description,
        .support-description {
            padding: 0;
            text-align: center;
        }

        .cta-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .cta-button {
            font-size: 15px;
            padding: 14px 20px;
            width: 100%;
        }

        .solution-wrapper {
            padding: 0 40px;
        }
    }

    @media (max-width: 600px) {
        .solution-wrapper {
            padding: 20px clamp(12px, 3vw, 20px) 30px;
        }

        .solution-header {
            margin-bottom: 25px;
        }

        .feature-item,
        .support-item {
            margin-bottom: 35px;
        }

        .support-grid {
            gap: 30px;
        }
    }

    @media (max-width: 480px) {
        .solution-wrapper {
            padding: 15px clamp(12px, 3vw, 16px) 25px;
        }

        .solution-section {
            margin-bottom: 40px;
        }

        .feature-item,
        .support-item {
            margin-bottom: 30px;
        }

        .support-grid {
            gap: 25px;
        }
    }

    @media screen and (max-width: 768px) {
        .solution-wrapper {
          padding: 0 40px;
        }
      
        .solution-section {
          padding: 50px 0;
        }
      }