.header-text-inline {
    text-align: center;
    padding: 40px 0;
    background-color: #004d40;
    color: #fff;
    margin-bottom: 20px;
}
.header-text-inline h1 {
    font-size: 2.5em;
    margin: 0;
}

.container-text-image-inline {
    margin: auto;
    padding: 20px;
    background-color: transparent; /* Makes the background transparent */
    box-shadow: none; /* Removes the box shadow */
}

.h2-text-image-inline {
    color: #004d40;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 40px;
}
.h3-text-image-inline {
    color: #00796b;
    margin-top: 20px;
}
.p-text-image-inline {
    font-size: 1.1em;
    margin-bottom: 15px;
}
.ul-text-image-inline {
    list-style-type: none;
    padding: 0;
}
.ul-text-image-inline li {
    background: #eaf1f1;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}
.content-block {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.content-block.left-image .text-content {
    order: 2;
    padding-left: 20px;
}
.content-block.left-image .image-content {
    order: 1;
    padding-right: 20px;
}
.content-block.right-image .text-content {
    order: 1;
    padding-right: 20px;
}
.content-block.right-image .image-content {
    order: 2;
    padding-left: 20px;
}
.text-content {
    flex: 1;
    min-width: 300px;
}
.image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-cms { margin-bottom: 40px; }
.key-benefits { background-color: #f9f9f9; padding: 20px; border-radius: 8px; }
.our-services { background-color: #f9f9f9; padding: 20px; border-radius: 8px; }
.key-benefits ul { list-style-type: none; padding: 0; }
.key-benefits li { margin-bottom: 10px; position: relative; padding-left: 25px; }
.key-benefits li:before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: bold; }
.our-services ul { list-style-type: disc; padding-left: 20px; }
.our-services li { margin-bottom: 10px; }
.cta { text-align: center; padding: 40px; color: white; border-radius: 8px; }
.cta h2 { color: white; margin-top: 0; }
.cta a { color: white; background-color: #2980b9; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: bold; }
.cta a:hover { background-color: #2c3e50; }

.image-inline-right-cms {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    float: right;
    margin: 0 0 10px 20px;
}


/* Color Palette */
:root {
    --primary-color: #007180;
    --accent-color: #DAA520; /* Goldenrod */
    --background-color: #f0f2f5;
    --card-bg-color: #ffffff;
    --text-color: #333;
    --heading-color: #2c3e50;
}

.container-home {
	font-family: 'Montserrat', Arial, sans-serif;
	color: var(--text-color);
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.section-home {
    padding: 0 0 40px 0;
    text-align: center;
}
.section-home h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: var(--heading-color);
    position: relative;
}
.section-home h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 180px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.services-home-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}
.service-item-home {
    display: flex;
    align-items: center;
    background: var(--card-bg-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    text-align: left;
    overflow: hidden;
    position: relative;
    border: 5px solid transparent; 
}

/* Side borders */
.service-item-home:nth-child(odd) {
    border-right: 14px solid var(--primary-color);
}
.service-item-home:nth-child(even) {
    border-left: 14px solid var(--accent-color);
}

.service-item-home.right-image-home {
    flex-direction: row-reverse;
}

/* Updated Hover Effects (no rotation) */
.service-item-home:hover {
    transform: translateY(-5px); /* Slight lift without rotation */
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background-color: #fcfcfc;
}

.service-item-home:nth-child(odd):hover {
    border-right-color: var(--accent-color);
}
.service-item-home:nth-child(even):hover {
    border-left-color: var(--primary-color);
}

.service-item-home img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.service-item-home img:hover {
    transform: scale(1.03); /* Slight scale without rotation */
    filter: brightness(1.1);
}

.service-item-home .image-left-home {
    margin-right: 50px;
}
.service-item-home .image-right-home {
    margin-left: 50px;
}
.service-content-home {
    flex: 1;
    z-index: 1;
    position: relative;
}
.service-content-home h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}
.service-item-home:hover .service-content-home h3 {
    color: var(--primary-color);
}
.service-item-home:nth-child(even):hover .service-content-home h3 {
     color: var(--accent-color);
}

.service-content-home p {
    font-size: 1.4em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}
.service-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.service-item-home:nth-child(even) .service-btn {
    background: var(--accent-color);
}
.service-item-home:nth-child(even) .service-btn:hover {
    background: #c79100;
}
.service-btn:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}
.call-to-action {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #fff;
    padding: 70px 0;
    text-align: center;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.3);
}
.call-to-action h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}
.call-to-action p {
    font-size: 1.6em;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-item-home, .service-item-home.right-image-home {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        border: 5px solid;
    }
    .service-item-home:nth-child(odd) {
        border-color: var(--primary-color);
    }
    .service-item-home:nth-child(even) {
        border-color: var(--accent-color);
    }
    .service-item-home.right-image-home:nth-child(odd),
    .service-item-home.right-image-home:nth-child(even) {
        border-color: var(--primary-color);
    }
    .service-item-home img {
        margin: 0 0 30px 0 !important;
        max-width: 80%;
    }
    .service-item-home .image-left-home,
    .service-item-home .image-right-home {
        margin: 0;
    }
    .service-content-home h3 {
        font-size: 2em;
    }
    .service-content-home p {
        font-size: 1.2em;
    }
}
@media (max-width: 768px) {
    .section-home h2 {
        font-size: 2.2em;
    }
    .service-item-home {
        padding: 25px;
    }
    .service-item-home img {
        max-width: 90%;
    }
    .service-content-home h3 {
        font-size: 1.8em;
    }
    .service-content-home p {
        font-size: 1em;
    }
    .service-btn {
        padding: 8px 18px;
        font-size: 0.9em;
    }
    .call-to-action h2 {
        font-size: 2em;
    }
    .call-to-action p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .content-block {
        flex-direction: column;
    }
    .content-block.left-image .text-content,
    .content-block.left-image .image-content,
    .content-block.right-image .text-content,
    .content-block.right-image .image-content {
        order: unset;
        padding: 0;
    }
    .text-content, .image-content {
        min-width: unset;
        width: 100%;
    }
    .image-content {
        margin-top: 20px;
    }
}


.h1-pricing, .h2-pricing {
    color: #2c3e50;
    text-align: center;
}
.h1-pricing {
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
}
.p-pricing {
    font-size: 1.1em;
    text-align: center;
}
.service-list-pricing {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 20px;
}
.service-list-pricing li {
    display: inline-block;
    margin: 0 10px;
    font-weight: bold;
}
.price-section-pricing {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}
.price-card-pricing {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    margin: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.price-card-pricing h3 {
    color: #2980b9;
    margin-top: 0;
}
.price-card-pricing .price-pricing {
    font-size: 2em;
    color: #e74c3c;
    margin: 10px 0;
}
.price-card-pricing .duration-pricing {
    font-size: 0.9em;
    color: #7f8c8d;
}
.details-link-pricing {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.details-link-pricing:hover {
    background-color: #2980b9;
}
.disclaimer-pricing {
    margin-top: 40px;
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
}

.global-section-elegant-home {
    padding: 20px 20px;
    background: linear-gradient(135deg, #f0f4f7 0%, #e9edf2 100%);
    color: #444;
    text-align: center;
}
.global-section-elegant-home h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a237e;
}
.global-section-elegant-home p {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}