        .cta-section {
            width: 100%;
            height: 275px;
            background-color: #107A3B;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 0;
            margin-top: 50px;
        }
        
        .cta-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .cta-heading {
            color: #FFF;
            font-feature-settings: 'liga' off, 'clig' off;
            font-family: "League Spartan", sans-serif;
            font-size: 47.976px;
            font-style: normal;
            font-weight: 400;
            line-height: 80%;
            letter-spacing: -2.399px;
            margin-bottom: 1rem;
            max-width: 377px;
        }
        
        .cta-subheading {
            color: #FFF;
            text-align: center;
            font-feature-settings: 'liga' off, 'clig' off;
            font-family: "League Spartan", sans-serif;
            font-size: 21px;
            font-style: normal;
            font-weight: 300;
            line-height: 95%;
            letter-spacing: -0.42px;
            margin-bottom: 2rem;
            max-width: 301px;
        }
        
        .cta-button {
            color: #FFF;
            text-align: center;
            font-feature-settings: 'liga' off, 'clig' off;
            font-family: "League Spartan", sans-serif;
            font-size: 17.463px;
            font-style: normal;
            font-weight: 600;
            line-height: 130%;
            border: none;
            border-radius: 4.366px;
            background: #9AD63C;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .cta-button:hover {
            background-color: #8BC32F;
        }
        
        @media (max-width: 991px) {
            .cta-section {
                height: 100%;
                padding: 30px 0;
            }
            .cta-heading {
                font-size: 2rem;
            }
            .cta-subheading {
                font-size: 1rem;
            }
            .cta-button {
                font-size: 1rem;
            }
        }