.services-page {
    padding: 50px 0;
}

.services-page>h2 {
    font-size: 26px;
    font-weight: bold;
    color: #09ab9c;
    margin-top: 35px;
}

.services-page>p {
    font-size: 18px;
    margin-bottom: 15px;
}

.services-page>p>span {
    font-weight: bold;
}

.services-page>ul {
    font-size: 18px;
}

.services-page>ul>li {
    margin-bottom: 5px;
}

.services-page>ul>li::marker {
    color: #09ab9c;
    background-color: #09ab9c;
    font-size: 18px;
}

.ortodontia-tabs {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 150px;
}


.tab-button {
    transition: 0.3s;
    width: 33.33%;
    border: none;
    background: #09ab9c;
    font-size: 32px;
    color: white;
}

.tab-button:hover {
    transition: 0.3s;
    cursor: pointer;
    background: white;
    color: black;
}

.tab-active {
    color: black !important;
    font-weight: bold !important;
    background: white !important;
    cursor: default !important;
}

.hidden-tab {
    display: none;
}

.services-page-row {
    display: flex;
    gap: 30px;
    margin-top: 45px;
}

.services-page-card {
    width: calc(33.33% - 20px);
    text-align: center;
    padding: 15px;
    border: 1px solid #09ab9c;
    border-radius: 15px;
    min-height: 250px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.services-page-card>h1 {
    color: #09ab9c;
    ;
    font-size: 22px;
}

.advantages-and-disadvantages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
}

.advantages,
.disadvantages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.advantages-item,
.disadvantages-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    margin-bottom: 10px;
    gap: 5px;
}

.advantages-item>i,
.disadvantages-item>i {
    width: 20px;
    color: #09ab9c;
    ;
}

.advantages-item>span,
.disadvantages-item>span {
    width: calc(100% - 20px);
}

@media (max-width: 991px) {
    .ortodontia-tabs {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        height: 100% !important;
    }

    .tab-button {
        width: 100% !important;
        padding: 25px 0;
    }

    .services-page-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 45px;
    }

    .services-page-card {
        width: 100% !important;
        max-width: 250px;
        margin: 0 auto;
    }

}