.appointment-section {
    position: relative;
    background: url("../images/salon-background.png") no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appointment-section .container {
    width: 100%;
    max-width: 1200px;
}

.appointment-section .content-box {
    background-color: rgba(18, 18, 18, 0.85);
    color: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(223, 184, 77, 0.3);
}

.appointment-section .content-box:hover {
    background-color: rgba(18, 18, 18, 0.95);
    border: 2px solid #dfb84d;
    box-shadow: 0 6px 20px rgba(223, 184, 77, 0.6);
    transform: scale(1.05);
}

.appointment-section .content-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #dfb84d;
}

.appointment-section .content-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.appointment-section .content-box .btn {
    display: inline-block;
    background-color: #dfb84d;
    color: #121212;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    max-width: 100%;
    word-wrap: break-word;
    box-shadow: 0 6px 12px rgba(223, 184, 77, 0.6);
}

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

@media (max-width: 768px) {
    .appointment-section .content-box h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .appointment-section .content-box p {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .appointment-section .content-box .btn {
        font-size: 1.2rem;
        padding: 10px 20px;
        box-shadow: 0 4px 8px rgba(223, 184, 77, 0.5);
    }
}
