.text-main p{
    font-family: "Open Sans", sans-serif;
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 27px;
}

.scroll-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow:hover {
    opacity: 0.7;
}


/* Content Sections */
/* Content Sections */
.content-section {
    padding: 0;
}

.section-header {
    background-color: #2E2421;
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 44px;
    color: white;
    font-weight: 400;
    margin: 0;
    font-family: "Philosopher", sans-serif;
    text-transform: none;
}

.content-section .container {
    align-items: center;
    justify-content: center;
    padding: 0px 121px;
    background-color: #ffffff;
    margin-top: 0;
    padding-top: 0;
}


/* Service Blocks Styling */

.service-block {
    margin: 60px 0;
    padding: 0 20px;
}


/* Massage Category Alternating Backgrounds */
.service-block.salzgrotte-dark {
    background-color: #6b5544;
    padding: 60px 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.service-block.salzgrotte-dark .service-text h2,
.service-block.salzgrotte-dark .service-description,
.service-block.salzgrotte-dark .service-description p,
.service-block.salzgrotte-dark .service-pricing,
.service-block.salzgrotte-dark .service-pricing p {
    color: #ffffff;
}

.service-block.salzgrotte-dark .btn-details {
    border-color: #ffffff;
    color: #ffffff;
}

.service-block.salzgrotte-dark .btn-details:hover {
    background-color: #ffffff;
    color: #6b5544;
}

.service-block.salzgrotte-dark .btn-buy {
    background-color: #ffffff;
    color: #6b5544;
    border-color: #ffffff;
}

.service-block.salzgrotte-dark .btn-buy:hover {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.service-block.salzgrotte-light {
    background-color: #f5f0eb;
    padding: 60px 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.service-block.salzgrotte-light .service-text h2,
.service-block.salzgrotte-light .service-description,
.service-block.salzgrotte-light .service-pricing {
    color: #333;
}

/* Keep content centered while background is full-width */
.service-block.salzgrotte-dark .service-content,
.service-block.salzgrotte-light .service-content {
    padding: 0 20px;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0px auto;
}




/* Image Right Layout (Default - Salzgrotte style) */
/* Text on LEFT, Image on RIGHT */
.service-block.image-right .service-text {
    order: 1;
}

.service-block.image-right .service-image {
    order: 2;
}

/* Image Left Layout (Intensive style) */
/* Image on LEFT, Text on RIGHT */
.service-block.image-left .service-text {
    order: 2;
}

.service-block.image-left .service-image {
    order: 1;
}

/* Text Section */
.service-text {
    flex: 1;
    min-width: 0;
}

.service-text h2 {
    font-family: "Philosopher", sans-serif;
    text-transform: none;
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: black;
}

.service-description {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-description p {
    margin: 0 0 15px 0;
}

/* Pricing Section */
.service-pricing {
    margin: 20px 0 30px 0;
}

.service-pricing p {
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    color: black;
    margin: 5px 0;
}

/* Buttons */
.service-buttons {
    display: flex;
    gap: 15px;
    /* flex-wrap: wrap; */
}

.service-buttons a {
    font-family: "Open Sans", sans-serif;
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-buy {
    background-color: #59463E;
    color: #fff;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 85, 68, 0.3);
}

.btn-details {
    background-color: transparent;
    color: #59463E;
    border: 1px solid #59463E;
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.service-image {
    flex: 1;
    min-width: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 450px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-content {
        gap: 40px;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-block {
        margin: 40px 0;
    }
    
    .service-content,
    .service-block.image-right .service-content,
    .service-block.image-left .service-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-block.image-right .service-text {
        order: 2 !important;
    }

    .service-block.image-right .service-image {
        order: 1 !important;
    }

    .service-block.image-left .service-text {
        order: 2 !important;
    }

    .service-block.image-left .service-image {
        order: 1 !important;
    }
    
    .service-text h2 {
        font-size: 1.75rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-buttons {
        justify-content: center;
    }
    
    .service-buttons a {
        flex: 1;
        text-align: center;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .service-block {
        padding: 0 15px;
        margin: 30px 0;
    }
    
    .service-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-pricing {
        margin: 15px 0 20px 0;
    }
    
    .service-pricing p {
        font-size: 0.85rem;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .service-buttons a {
        width: 100%;
        text-align: center;
    }
}