.discount-section {
    background: url('../images/discount_background.png') no-repeat center center/cover;
    color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1000px rgba(18, 18, 18, 0.7);
}

.discount-section .special-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #dfb84d;
    margin-bottom: 10px;
}

.discount-section .discount-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    white-space: normal;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    color: #dfb84d;
}

.discount-section .discount-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #f5f5f5;
    margin: 0 auto 30px;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
}

.btn-appointment {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    background-color: #dfb84d;
    color: #121212;
    font-weight: 700;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(223, 184, 77, 0.6);
}

.btn-appointment:hover {
    background-color: #fff;
    color: #121212;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .discount-section {
        padding: 50px 10px;
    }

    .discount-section .discount-description {
        max-width: 90%;
    }

    .btn-appointment {
        padding: 10px 20px;
    }
}
