* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2d7a3e;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f9f9f9;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #2d7a3e 0%, #3a9450 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #2d7a3e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2d7a3e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #2d7a3e;
}

.cta-button-secondary:hover {
    background: #2d7a3e;
    color: #fff;
}

.intro-section {
    padding: 80px 20px;
    background: #fff;
}

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

.intro-image {
    flex: 1;
    background: #e0e0e0;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.services-preview {
    padding: 80px 20px;
    background: #f5f5f5;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d7a3e;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
    margin: 15px 0;
}

.select-service {
    width: 100%;
    padding: 12px;
    background: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #236330;
}

.booking-section {
    padding: 80px 20px;
    background: #fff;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.booking-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.selected-service-display {
    background: #f0f8f2;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.selected-service-display h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.selected-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.selected-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
}

.booking-form {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 14px;
    background: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #236330;
}

.testimonials-section {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2d7a3e;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2d7a3e;
}

.footer {
    background: #2a2a2a;
    color: #fff;
    padding: 50px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2d7a3e;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #2d7a3e;
}

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

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #2d7a3e;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2d7a3e;
    color: #fff;
}

.cookie-accept:hover {
    background: #236330;
}

.cookie-reject {
    background: #666;
    color: #fff;
}

.cookie-reject:hover {
    background: #555;
}

.page-header {
    background: linear-gradient(135deg, #2d7a3e 0%, #3a9450 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-image {
    flex: 1;
    background: #e0e0e0;
}

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

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d7a3e;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: #fff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.team-intro p {
    font-size: 17px;
    color: #666;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #2d7a3e;
}

.team-role {
    font-size: 14px;
    color: #2d7a3e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.approach-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background: #e0e0e0;
}

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

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2d7a3e 0%, #3a9450 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: #fff;
    color: #2d7a3e;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2d7a3e;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background: #e0e0e0;
}

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

.select-service-btn {
    padding: 14px 28px;
    background: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #236330;
}

.booking-cta {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.booking-cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.booking-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #666;
}

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.contact-detail {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #2d7a3e;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
}

.map-container {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}

.map-text {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.transit-info {
    list-style: none;
    margin-bottom: 20px;
}

.transit-info li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.transit-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 20px;
}

.parking-info {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.contact-alternative {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.contact-alternative h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.contact-alternative p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #666;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.confirmation-details {
    background: #f0f8f2;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.confirmation-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d7a3e;
}

.selected-service-info {
    font-size: 18px;
    color: #333;
}

.next-steps {
    text-align: left;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d7a3e;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
}

.thanks-note {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d7a3e;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d7a3e;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2d7a3e;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-grid,
    .about-split,
    .approach-section,
    .booking-container,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 15px;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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

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

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

@media (max-width: 600px) {
    .hero-content,
    .about-content,
    .approach-content {
        padding: 40px 30px;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .testimonials-section h2,
    .team-intro h2 {
        font-size: 32px;
    }
}