    /* CTA Section Styles */
    .cta {
        width: 100%;
        position: relative;
        padding: 100px 0;   
    }

    .cta-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }

    .cta-logo img {
        height: 100px;
        width: auto;
    }

    .cta-text {
        font-size: 60px;
        font-weight: 400;
        color: white;
        line-height: 1.2;
        margin: 0;
        text-align: center;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-btn {
        width: 177px;
        height: 50px;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .btn-primary {
        background: linear-gradient(90deg, #DE7415 0%, #6F6E5E 78%, #0068A6 100%);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(222, 116, 21, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 1px solid;
        border-image: linear-gradient(90deg, #DE7415 0%, #6F6E5E 78%, #0068A6 100%) 1;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
/* CTA Section Responsive Styles */
@media (max-width: 1200px) {
    .cta {
        margin-bottom: 10%;
        padding: 0px;
    }
    
    .cta-container {
        max-width: 960px;
    }
    
    .cta-text {
        font-size: 42px;
    }
    
    .cta-content {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .cta {
        margin-top: 130%;
        padding: 0px;
    }
    }
    
    .cta-content {
        gap: 30px;
    }
    
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-btn {
        width: 160px;
        height: 48px;
        font-size: 15px;
    }

@media (max-width: 480px) {
    .cta {
        margin-bottom: 15%;
    }
    
    .cta-text {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .cta-content {
        gap: 25px;
    }
    
    .cta-logo img {
        height: 80px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cta-btn {
        width: 100%;
        height: 50px;
        font-size: 16px;
    }
    
    /* Adjust hover effects for mobile */
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-1px);
    }
}

/* Additional small screen optimization */
@media (max-width: 360px) {
    .cta-text {
        font-size: 24px;
    }
    
    .cta-buttons {
        max-width: 100%;
    }
    
    .cta-btn {
        height: 48px;
        font-size: 15px;
    }
}