.support-footer-section {
    background-color: #0A2540;
    padding: 50px 60px;
    text-align: center;
}

.support-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-label {
    color: #BE930B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-title {
    color: #FFF;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-subtitle {
    color: #C7D1DC;
    font-size: 16px;
    margin-top: 2px;
}

.footer-button {
    display: inline-flex;
    padding: 15px 24px;
    align-items: center;
    justify-content: center;
    background: #BE930B;
    color: #082740;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 18px;
}

.footer-button:hover {
    background-color: #d4a50c;
}

@media (max-width: 768px) {
    .support-footer-section {
        padding: 30px 20px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-subtitle {
        font-size: 14px;
    }
}