.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    margin-bottom: 110px;
    padding: 0;
    text-align: center;
    color: #fff;
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hair-service.jpg"); */
    background-position: center;
    background-size: cover;
}

body {
    background-color: #495e4d;
}

.service-info-container {
    max-width: 70%;
    margin: auto;
    border-radius: 10px;
}

.service-info-container h2 {
    /* border-bottom: #495e4d dashed 2px; */
    display: block;
    margin: 30px 0 40px 0;
    padding: 20px 30px;
    letter-spacing: 5px;
    color: #ddd;
    border-radius: 5px;
    background-color: #495e4d;
    box-shadow:
        0 2px 6px rgb(0, 0, 0, 0.2),
        0 4px 8px rgb(0, 0, 0, 0.3);
    text-shadow: 2px 2px 4px #222;
}

.service-info-container ul {
    padding: 0;
    list-style: none;
}

.service-info-container ul li {
    margin: 30px;
    padding: 20px 25px;
    background-color: #fff;
    box-shadow:
        0 2px 6px rgb(0, 0, 0, 0.2),
        0 4px 8px rgb(0, 0, 0, 0.3);
}

.service-info-container ul li p {
    padding-bottom: 20px;
    font-size: 22px;
}

.service-info-container ul li .service-price {
    color: #333;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
}

.price-separator {
    width: 60px;
    height: 3px;
    margin: 30px auto;
    background-color: #222;
}

#green-price {
    color: #495e4d;
}

.button-container {
    padding: 25px;
}

.button-container a {
    display: block;
    /* width: 30%; */
    margin: 25px auto;
    padding: 20px 25px;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: #495e4d;
    border: 2px solid #495e4d;
    border-radius: 5px;
    background-color: #fff;
    box-shadow:
        0 2px 6px rgb(0, 0, 0, 0.2),
        0 4px 8px rgb(0, 0, 0, 0.3);
    font-size: 22px;
    font-weight: bolder;
}

.button-container a:hover {
    color: #fff;
    background-color: #333;
}

/* #book-appointment {
    margin: 10px auto 60px auto;

} */

@media (max-width: 768px) {
    #service-title {
        padding: 0 20px;
        font-size: 60px;
    }

    .service-info-container h2 {
        font-size: 20px;
    }

    .service-info-container ul li .service-price {
        font-size: 18px;
    }

    .button-container a {
        width: 100%;
        max-width: none;
    }

    .service-info-container {
        max-width: 100%;
    }
}
