/* Terapia Page Styles */

/* Header Small */
.header-small {
    padding: 60px 0;
}

.header-small .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #5E6A39;
    text-align: center;
    margin: 0;
}

/* Green Separator Line */
.separator-line {
    height: 15px;
    background-color: #5E6A39;
    width: 100%;
}

/* Therapy Introduction Section */
.therapy-intro-section {
    padding: 100px 0;
}

.section-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #5E6A39;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #5E6A39;
    margin-bottom: 30px;
}

.section-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.03em;
    color: #5E6A39;
}

.section-text p {
    margin-bottom: 20px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.text-bold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.03em;
    color: #5E6A39;
}

/* Rounded Image */
.rounded-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 50px;
    object-fit: cover;
}

/* Contact Section Styles */
.contact-section {
    padding: 0;
    margin-top: 80px;
    min-height: 400px;
}

.contact-row {
    min-height: 400px;
}

.text-column {
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
}

.button-column {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 80px;
}

.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    font-style: ExtraLight;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0.07em;
    color: #5E6A39;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .therapy-intro-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .image-column {
        margin-top: 50px;
    }
    
    .rounded-image {
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .header-small {
        padding: 5px 0;
    }
    
    .header-title {
        font-size: 30px;
    }
    
    .therapy-intro-section {
        padding: 60px 0;
    }
    
    .section-label {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
