/* 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;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #89c9a5;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #245f3d;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header - Split Navigation */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a4f;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    text-transform: uppercase;
    color: #999999;
    padding: 4px 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.header-right a {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2d7a4f;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.hero-image {
    flex: 1;
    background-color: #2c2c2c;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #245f3d;
    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;
}

/* Intro Section - Split Layout */
.intro-section {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    background-color: #1a1a1a;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* Services Preview */
.services-preview {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #666666;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a4f;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Booking Section - Split Layout */
.booking-split {
    display: flex;
    min-height: 600px;
}

.booking-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.booking-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-content > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.booking-image {
    flex: 1;
    background-color: #2c2c2c;
    overflow: hidden;
}

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

/* Form Styles */
.booking-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a4f;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 32px;
    background-color: #2c2c2c;
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #89c9a5;
}

/* Footer */
.footer-section {
    background-color: #0f0f0f;
    color: #cccccc;
    padding: 60px 40px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #89c9a5;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #1a1a1a;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #999999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2c2c2c;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777777;
}

/* Page Hero */
.page-hero {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #cccccc;
}

/* About Page - Split Sections */
.about-split-intro {
    display: flex;
    min-height: 600px;
}

.about-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.about-image-right {
    flex: 1;
    background-color: #2c2c2c;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-block {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d7a4f;
}

.value-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

.team-split-section {
    display: flex;
    min-height: 500px;
}

.team-image-left {
    flex: 1;
    background-color: #2c2c2c;
    overflow: hidden;
}

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

.team-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-content-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-content-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-section-about {
    padding: 80px 40px;
    background-color: #2d7a4f;
    color: #ffffff;
    text-align: center;
}

.cta-section-about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-section-about .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Services Detail Page */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-features {
    margin-top: 24px;
    list-style: none;
}

.service-features li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #2c2c2c;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
    font-size: 18px;
}

.booking-cta-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.booking-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

/* Contact Page */
.contact-main-section {
    display: flex;
    min-height: 600px;
}

.contact-info-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    max-width: 500px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d7a4f;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image-block {
    flex: 1;
    background-color: #2c2c2c;
    overflow: hidden;
}

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

.contact-directions {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-directions h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.directions-content {
    max-width: 800px;
    margin: 0 auto;
}

.directions-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.contact-cta-section {
    padding: 80px 40px;
    background-color: #2d7a4f;
}

.contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.contact-cta-inner h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-cta-inner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.contact-cta-inner .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Thanks Page */
.thanks-main-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    margin-bottom: 32px;
    color: #2d7a4f;
    font-weight: 600;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

#selected-service-display {
    font-weight: 600;
    color: #2d7a4f;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-next-steps {
    padding: 80px 40px;
    background-color: #ffffff;
}

.thanks-next-steps h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d7a4f;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

/* Legal Pages */
.legal-page {
    padding: 60px 40px 80px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
    list-style: disc;
}

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

.legal-content a:hover {
    color: #245f3d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .booking-split,
    .about-split-intro,
    .team-split-section,
    .contact-main-section {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content,
    .intro-right,
    .booking-content,
    .about-content-left,
    .team-content-right,
    .contact-info-block {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-left,
    .booking-image,
    .about-image-right,
    .team-image-left,
    .contact-image-block,
    .service-detail-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .header-split {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .services-preview h2,
    .testimonials-section h2,
    .values-section h2,
    .thanks-next-steps h2,
    .contact-directions h2,
    .cta-section-about h2,
    .booking-cta-content h2,
    .contact-cta-inner h2 {
        font-size: 32px;
    }

    .intro-right h2,
    .booking-content h2,
    .about-content-left h2,
    .team-content-right h2,
    .service-detail-content h2,
    .contact-info-block h2 {
        font-size: 28px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .intro-right,
    .booking-content,
    .about-content-left,
    .team-content-right,
    .contact-info-block {
        padding: 40px 24px;
    }

    .services-preview,
    .testimonials-section,
    .values-section,
    .booking-cta-section,
    .cta-section-about,
    .contact-cta-section,
    .thanks-next-steps {
        padding: 60px 24px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}