
    .cta-section {
        background: linear-gradient(135deg, #1e293b, #334155);
        padding: 60px 40px;
        border-radius: 20px;
        text-align: center;
        color: white;
        margin: 60px 0;
    }

    .cta-section h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .cta-section p {
        margin-bottom: 30px;
        font-size: 18px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
        padding: 15px 30px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
    }

    .btn-secondary {
        border: 2px solid white;
        color: white;
        padding: 13px 30px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-secondary:hover {
        background: white;
        color: #1e293b;
    }

    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }
