.services {
    position: relative;
    padding-top: 120px;
    padding-bottom: 150px;
    border-radius: 0 0 60px 60px;
    z-index: 2;
    background-color: var(--background-grey);
}

.services h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

.services_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: -40px;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 40px) / 2);
    background-color: var(--pink);
    border: 2px solid var(--black);
    border-radius: 40px;
    padding: 25px;
    box-sizing: border-box;
    margin-bottom: 40px;
    box-shadow: 0px 5px 0px #00000026;
}

.service h3 {
    margin: -10px 0 0 0;
}

.service p {
    font-weight: 600;
    margin: 4px 0;
}

.service p i {
    width: 28px;
}

.service p .fa-child {
    margin-left: 2px;
    margin-right: -2px;
}

.service .button {
    margin-top: 15px;
}

.service .star {
    position: absolute;
    bottom: 17px;
    right: 25px;
}

/* Start by hiding the full description and the short description container for safety */
.description-text.hidden {
    display: none;
}

/* Optional: Add a smooth transition */
.description-container {
    transition: max-height 0.5s ease-in-out; 
    overflow: hidden; /* Important for clean truncation effect if you use max-height */
}

.service .read-more-toggle {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 1250px) {
    .services_wrapper {
        margin-bottom: -25px;
    }

    .service {
        width: calc((100% - 25px) / 2);
        margin-bottom: 25px;
    }
}

@media (max-width: 950px) {
    .service {
        width: 100%;
    }
}

@media (max-width: 870px) {
    .services {
        margin-bottom: -70px;
    }
}

@media (max-width: 600px) {
    .service .star {
        display: none;
    }

    .services {
        padding-top: 90px;
        padding-bottom: 100px;
    }
}