/* Home page (index) */
.main__about {
    padding: 36px 0 24px;
}

.about__header h3 {
    color: #fff;
}

.buttons-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.btn-black {
    position: relative;
    background: #222 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    font-weight: bold !important;
}

.btn-black::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.btn-black::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
}

.info-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px 0 30px;
}

.info-column {
    flex: 1;
    padding: 0 15px;
}

.info-title {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: bold;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.info-content {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.info-icon {
    margin-right: 10px;
}

.pedicure-menu .service-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .buttons-section {
        flex-direction: column;
        align-items: center;
    }
}
