* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

.cta-banner-wrapper {
    padding: 40px 20px;
}

.cta-banner {
    max-width: 1200px;
    height: 333px;
    margin: 0 auto;
    background-image: url('../../asset/image/setionFooter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 16px;
}

.cta-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #0066CC;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f0f8ff;
}

.cta-button .icon-go {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .icon-go {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-banner {
        height: auto;
        min-height: 300px;
    }

    .cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    .cta-title br {
        display: none;
    }

    .cta-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 30px;
    }

    .cta-description br {
        display: none;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-banner-wrapper {
        padding: 20px 15px;
    }

    .cta-banner {
        min-height: 280px;
    }

    .cta-title {
        font-size: 20px;
        line-height: 28px;
    }

    .cta-description {
        font-size: 13px;
        line-height: 18px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}
