﻿/* CTA Buttons Styles */
.cta-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .cta-btn .icon {
        font-size: 20px;
    }

    .cta-btn.blue {
        background-color: #3498db;
    }

    .cta-btn.orange {
        background-color: #e67e22;
    }

    .cta-btn.green {
        background-color: #2ecc71;
    }

    .cta-btn:hover {
        filter: brightness(1.15);
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 90%;
        justify-content: center;
    }
}
