.about-beauty-salon {
    background-color: #000;
    color: #fff;
    padding: 50px 10%;
}

.top-content {
    display: grid;
    grid-template-columns: 30% 55%;
    gap: 120px;
    margin-bottom: 60px;
    align-items: center;
}

.heading-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 7rem;
    font-weight: bold;
    line-height: 0.8;
}

.heading-section .special-text {
    font-family: 'Great Vibes', cursive;
    font-size: 8rem;
    color: #dfb84d;
}

.description-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: justify;
}

.description-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
}

.about-beauty-salon-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    text-align: center;
    margin-top: 50px;
}

.about-beauty-salon-service-item {
    text-align: center;
}

.about-beauty-salon-service-item .icon-circle {
    width: 200px;
    height: 200px;
    background-color: #dfb84d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-beauty-salon-service-item img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.about-beauty-salon-service-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
}

.about-beauty-salon-service-item p {
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
}

@media (max-width: 1024px) {
    .about-beauty-salon-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-beauty-salon-service-item .icon-circle {
        width: 150px;
        height: 150px;
    }

    .about-beauty-salon-service-item img {
        width: 50%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    .top-content {
        display: flex;
        grid-template-columns: 30% 55%;
        gap: 5px;
        margin-bottom: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    .heading-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.8rem;
        font-weight: bold;
        line-height: 0.9;
    }

    .heading-section .special-text {
        font-family: 'Great Vibes', cursive;
        font-size: 2.5rem;
        color: #dfb84d;
    }

    .description-section h3 {
        font-size: 1rem;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: justify;
    }

    .description-section p {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify;
    }

    .about-beauty-salon-services {
        grid-template-columns: 1fr;
    }

    .about-beauty-salon-service-item .icon-circle {
        width: 120px;
        height: 120px;
    }

    .about-beauty-salon-service-item img {
        width: 40%;
        height: 40%;
    }
}
