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

:root {
    --primary-color: #2E7D32;
    --secondary-color: #1B5E20;
    --text-dark: #1A1A1A;
    --text-gray: #555555;
    --text-light: #777777;
    --background-light: #FAFAFA;
    --background-white: #FFFFFF;
    --border-color: #E0E0E0;
    --accent-color: #66BB6A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: var(--background-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: var(--background-white);
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-minimal {
    padding: 120px 60px 80px;
    background-color: var(--background-light);
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.6;
}

.hero-image-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--border-color);
}

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

.intro-spacious {
    padding: 140px 60px;
    background-color: var(--background-white);
}

.content-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.large-text {
    font-size: 28px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-gray);
}

.approach-section {
    padding: 100px 60px;
    background-color: var(--background-light);
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 300;
}

.approach-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.citation:hover {
    color: var(--secondary-color);
}

.services-preview {
    padding: 120px 60px;
    background-color: var(--background-white);
}

.centered-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    padding: 50px 40px;
    background-color: var(--background-light);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-section {
    padding: 100px 60px;
    background-color: var(--background-light);
}

.benefits-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 300;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.benefit-item p {
    font-size: 18px;
    color: var(--text-gray);
}

.testimonials-section {
    padding: 120px 60px;
    background-color: var(--background-white);
}

.testimonials-minimal {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.testimonial:last-child {
    border-bottom: none;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.booking-form-section {
    padding: 120px 60px;
    background-color: var(--background-light);
}

.form-container-centered {
    max-width: 650px;
    margin: 0 auto;
}

.form-container-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 80px 60px;
    background-color: var(--background-white);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 80px 60px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section p {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section .references {
    list-style-position: inside;
    font-size: 13px;
}

.footer-section .references li {
    margin-bottom: 10px;
}

.footer-section .references a {
    color: #CCCCCC;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    font-size: 13px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 25px 60px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--background-white);
    border: 1px solid var(--background-white);
}

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

.page-header-minimal {
    padding: 100px 60px 60px;
    background-color: var(--background-light);
    text-align: center;
}

.page-header-minimal h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 300;
}

.about-story {
    padding: 100px 60px;
    background-color: var(--background-white);
}

.about-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image-large {
    flex: 1;
    background-color: var(--border-color);
}

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

.about-text-content {
    flex: 1;
}

.about-text-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 100px 60px;
    background-color: var(--background-light);
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 300;
}

.philosophy-points {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.philosophy-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 400;
}

.philosophy-item p {
    font-size: 17px;
    color: var(--text-gray);
}

.qualifications-section {
    padding: 100px 60px;
    background-color: var(--background-white);
}

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

.qualifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.qualification-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: var(--background-light);
}

.qualification-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.qualification-card p {
    font-size: 16px;
    color: var(--text-gray);
}

.values-section {
    padding: 100px 60px;
    background-color: var(--background-light);
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 300;
}

.values-section > p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.value-item p {
    font-size: 17px;
    color: var(--text-gray);
}

.cta-section-simple {
    padding: 120px 60px;
    background-color: var(--background-white);
}

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

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content-centered p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.services-detailed {
    padding: 80px 60px;
    background-color: var(--background-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
}

.service-price-large {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-description {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-details-list {
    margin-top: 30px;
}

.service-details-list h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-details-list ul {
    list-style-position: outside;
    margin-left: 20px;
}

.service-details-list ul li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: var(--border-color);
}

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

.booking-info-section {
    padding: 100px 60px;
    background-color: var(--background-light);
}

.booking-info-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 300;
}

.booking-cta {
    margin-top: 40px;
    text-align: center;
}

.contact-info-section {
    padding: 80px 60px;
    background-color: var(--background-white);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-info {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.hours-row .day {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-row .time {
    color: var(--text-gray);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.directions-section {
    padding: 80px 60px;
    background-color: var(--background-light);
}

.directions-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 300;
}

.directions-section > p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.transport-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.transport-option {
    flex: 1;
    min-width: 250px;
}

.transport-option h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.transport-option p {
    font-size: 16px;
    color: var(--text-gray);
}

.contact-note-section {
    padding: 80px 60px;
    background-color: var(--background-white);
}

.thanks-section {
    padding: 120px 60px;
    background-color: var(--background-light);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 300;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 60px;
}

.thanks-next-steps {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--background-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.step-text p {
    font-size: 16px;
    color: var(--text-gray);
}

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

.secondary-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--background-light);
}

.thanks-additional-info {
    padding: 80px 60px;
    background-color: var(--background-white);
}

.thanks-additional-info h3 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 300;
}

.faq-simple {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-gray);
}

.legal-page {
    padding: 80px 60px;
    background-color: var(--background-white);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .main-nav {
        padding: 20px 40px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero-minimal {
        padding: 80px 40px 60px;
    }

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

    .approach-layout,
    .about-layout,
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

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

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

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

    .services-grid-minimal {
        gap: 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .large-text {
        font-size: 22px;
    }

    .centered-heading {
        font-size: 36px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .qualifications-grid,
    .transport-info {
        flex-direction: column;
    }
}