/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2d7a4f;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1f5438;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #1a1a1a;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d7a4f;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a4f;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f5438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
}

.btn-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-primary-large {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: #1f5438;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 122, 79, 0.35);
}

.btn-link {
    color: #2d7a4f;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateX(5px);
}

/* Container Variations */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-narrow-center {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

.trust-text {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    color: #999;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Services Split Section */
.services-split {
    display: flex;
    align-items: stretch;
}

.split-left {
    flex: 1;
    overflow: hidden;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #ffffff;
}

.content-block {
    max-width: 600px;
}

.section-label {
    display: inline-block;
    color: #2d7a4f;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.content-block h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Service Mini Cards */
.service-mini-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mini-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateX(10px);
    background-color: #e9ecef;
}

.mini-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.price-tag {
    color: #2d7a4f;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mini-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Why Different Section */
.why-different {
    background-color: #f8f9fa;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.why-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials-flow {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2d7a4f;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Process Split */
.process-split {
    display: flex;
    align-items: stretch;
}

.split-left-dark {
    flex: 1;
    background-color: #1a1a1a;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.content-block-dark {
    max-width: 600px;
}

.section-label-light {
    display: inline-block;
    color: #66bb8a;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.content-block-dark h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-block-dark p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a4f;
    min-width: 50px;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.split-right-image {
    flex: 1;
    overflow: hidden;
}

.split-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Topics Showcase */
.topics-showcase {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.topic-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.topic-item:hover {
    border-color: #2d7a4f;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.topic-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.topic-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.container-split-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-info p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

/* Forms */
.booking-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a4f;
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    flex: 1;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-submit,
.btn-submit-large {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-submit:hover,
.btn-submit-large:hover {
    background-color: #1f5438;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 122, 79, 0.35);
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: -0.5rem;
}

/* CTA Sections */
.cta-sticky-trigger {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: bottom 0.3s ease;
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #1f5438;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #66bb8a;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #66bb8a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-content a {
    color: #66bb8a;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1f5438;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Page Hero Variations */
.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 50vh;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding: 4rem;
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    overflow: hidden;
}

.hero-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 0;
}

.service-row-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 5rem;
}

.service-row-split.reverse {
    flex-direction: row-reverse;
}

.service-image-left {
    flex: 1;
    overflow: hidden;
}

.service-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-category {
    display: inline-block;
    color: #2d7a4f;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.service-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 0.95rem;
}

.feature-item strong {
    color: #1a1a1a;
    margin-right: 0.5rem;
}

.pricing-box {
    background-color: #f0f7f3;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a4f;
    margin-bottom: 2rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

/* Package Deals */
.package-deals {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.package-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.package-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: #2d7a4f;
    box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 0.5rem;
}

.package-save {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.package-includes {
    list-style: none;
    margin-top: 1.5rem;
}

.package-includes li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
}

/* About Page */
.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-text-side {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text-side h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-image-side {
    flex: 1;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    padding: 5rem 0;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-split {
    display: flex;
    align-items: stretch;
}

.split-dark-left {
    flex: 1;
    background-color: #1a1a1a;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.values-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #66bb8a;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.05rem;
}

.split-image-right {
    flex: 1;
    overflow: hidden;
}

.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e9ecef;
    line-height: 1;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
}

.experience-split {
    display: flex;
    align-items: stretch;
}

.experience-left {
    flex: 1;
    overflow: hidden;
}

.experience-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-inline-item {
    display: flex;
    flex-direction: column;
}

.stat-inline-item strong {
    font-size: 2.5rem;
    color: #2d7a4f;
    line-height: 1;
}

.stat-inline-item span {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.recognition-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.recognition-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.recognition-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2d7a4f;
}

.recognition-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.recognition-item p {
    color: #666;
    line-height: 1.6;
}

.commitment-dark {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
}

.commitment-content {
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem 3rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    line-height: 1.7;
}

.contact-split-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 1;
}

.contact-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2d7a4f;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-detail a {
    color: #2d7a4f;
    font-weight: 600;
}

.detail-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-form-side {
    flex: 1;
}

.form-wrapper {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.faq-item ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.cta-bottom-section {
    padding: 4rem 2rem;
}

.cta-content-box {
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-content-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content-box p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2d7a4f;
}

.btn-newsletter {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background-color: #1f5438;
}

/* Thanks Page */
.thanks-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f0f7f3;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a4f;
    margin-top: 2rem;
}

.service-selected {
    color: #1a1a1a;
    font-size: 1.05rem;
    margin: 0;
}

.next-steps {
    padding: 5rem 2rem;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #2d7a4f;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.thanks-resources {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.resources-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #2d7a4f;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-link {
    color: #2d7a4f;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.social-proof-thanks {
    padding: 4rem 2rem;
}

.thanks-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2d7a4f;
}

.thanks-testimonial p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.thanks-testimonial cite {
    color: #666;
    font-style: normal;
    font-size: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d7a4f;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2d7a4f;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #444;
}

.btn-cookie-reset {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-cookie-reset:hover {
    background-color: #1f5438;
}

.booking-cta-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .hero-split,
    .services-split,
    .process-split,
    .experience-split,
    .values-split,
    .about-hero-split,
    .page-hero-split,
    .service-row-split,
    .contact-split-section {
        flex-direction: column;
    }

    .service-row-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-left,
    .split-right,
    .split-left-dark,
    .split-right-image,
    .hero-text-side,
    .hero-image-side,
    .hero-content-left,
    .hero-visual-right,
    .service-image-left,
    .service-content-right,
    .experience-left,
    .experience-right,
    .split-dark-left,
    .split-image-right,
    .contact-info-side,
    .contact-form-side,
    .form-info,
    .form-container {
        flex: none;
        width: 100%;
    }

    .hero-content h1,
    .hero-text-side h1,
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .content-block h2,
    .service-content-right h2 {
        font-size: 2rem;
    }

    .split-content,
    .container-split-form {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-stats,
    .stats-inline {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .testimonial-grid,
    .topics-grid,
    .approach-grid,
    .package-grid,
    .steps-grid,
    .resources-grid {
        flex-direction: column;
    }

    .topic-item,
    .approach-card {
        flex: none;
        width: 100%;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .form-row {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1,
    .hero-text-side h1,
    .hero-content-left h1,
    .thanks-hero h1 {
        font-size: 2rem;
    }

    .section-title-center,
    .content-block h2,
    .service-content-right h2 {
        font-size: 1.75rem;
    }

    .hero-left,
    .hero-content-left,
    .hero-text-side,
    .split-right,
    .service-content-right,
    .experience-right {
        padding: 2rem;
    }

    .container-narrow,
    .container-narrow-center,
    .container-wide {
        padding: 3rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .approach-number {
        font-size: 2rem;
    }

    .package-card,
    .resource-card {
        min-width: 100%;
    }
}