.initially-hidden {
    visibility: hidden;
    opacity: 0;
}

.massaggi-detail-section {
    /*padding: 50px 0;*/
    background-color: #fff;
    background-image: url('../images/lotus.png'), url('../images/sheet.png'); /* Sostituisci con l'immagine di pattern che stai utilizzando */
    background-repeat: no-repeat, no-repeat;
    background-position: -100px top, right bottom;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-title {
    font-size: 40px;
    font-family: "Cormorant", serif;
    font-weight: 700;
    color: #556b2f;
    margin-bottom: 30px;
    text-align: left;
}

.massaggi-columns {
    display: flex;
    gap: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); /* Sfondo bianco semi-trasparente */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.massaggi-column {
    flex: 1;
    padding: 0;
    position: relative;
}

.massaggi-column.left-column {
    border-right: 1px solid #f0f0f0;
    width: calc(25% - 20px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.massaggi-column.right-column {
    border-right: 1px solid #f0f0f0;
    width: calc(25% - 20px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.massaggi-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.column-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.85); /* Sfondo bianco semi-trasparente */
    border-radius: inherit;
}


.column-content p:after {
    content: "";
    display: table;
    clear: both;
}

.image-container {
    margin: 20px 0;
    float: left; /* Fa fluire il testo accanto all'immagine */
    margin-right: 20px; /* Spazio tra l'immagine e il testo */
    max-width: 40%; /* Larghezza ridotta per lasciare spazio al testo */
   /* margin: 20px 0;
    text-align: center;
    !*max-width: 50%;*!
    float: left;
    margin-right: 20px;
    max-width: 40%;*/
}

.column-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: block; /* Assicura che l'immagine sia un blocco */
}

.massage-text {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #555;
    font-family: "Poppins", sans-serif;
    overflow: hidden
}

.intro-big {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    border-left: 4px solid #556b2f;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
}

.bottom-quote {
    margin-top: auto;
}

.column-title {
    color: #333;
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.content-grid {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.content-grid .image-container {
    flex: 0 0 40%; /* Non si espande o restringe, occupa il 40% */
    margin-right: 20px;
    float: none; /* Rimuovi float se usi flexbox */
    max-width: none; /* Lascia che flexbox gestisca la larghezza */
}

.content-grid .text-content {
    flex: 1; /* Prende lo spazio rimanente */
}

.benefit-keyword {
    font-weight: 700;
    color: #556b2f;
}

@media all and (max-width: 992px) {
    .massaggi-columns {
        flex-direction: column;
    }

    .massaggi-column.left-column {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 10px 10px 0 0;
    }

    .massaggi-column.right-column {
        border-radius: 0 0 10px 10px;
    }

    .section-title {
        font-size: 35px;
        text-align: center;
    }

    .bottom-quote {
        margin-top: 25px;
    }
}