:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc8f;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

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

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

.header-split {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    margin-bottom: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
}

.ad-label {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero-left h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 18px;
    color: #555;
}

.hero-right {
    min-height: 400px;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.intro-split {
    display: flex;
    flex-direction: column;
}

.intro-split.reverse {
    flex-direction: column;
}

.intro-image {
    min-height: 350px;
}

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

.intro-text {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-text h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 17px;
    color: #444;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 16px;
    color: #555;
}

.services-split {
    padding: 60px 20px;
}

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

.services-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-header p {
    font-size: 18px;
    color: #555;
}

.service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.service-item.reverse {
    flex-direction: column;
}

.service-content {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 28px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: #444;
}

.service-features {
    list-style-position: inside;
    margin: 10px 0;
}

.service-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

.service-image {
    min-height: 300px;
}

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

.btn-select {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}

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

.testimonial-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
}

.testimonial-content {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #333;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-image {
    min-height: 300px;
}

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

.form-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

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

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

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

.info-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background-color: var(--bg-light);
    gap: 30px;
}

.info-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 16px;
}

.info-cta {
    display: flex;
    justify-content: center;
}

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

.footer-split {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-column p {
    font-size: 15px;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.hero-content {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: #555;
}

.hero-visual {
    min-height: 300px;
}

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

.story-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.story-image {
    min-height: 350px;
    margin-bottom: 30px;
}

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

.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-content h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 17px;
    color: #444;
}

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

.values-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: #555;
}

.team-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.team-split.reverse {
    flex-direction: column;
}

.team-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-content h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.team-content p {
    font-size: 17px;
    color: #444;
}

.team-image {
    min-height: 300px;
}

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

.commitment-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.commitment-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.commitment-box p {
    font-size: 17px;
    color: #444;
    margin-bottom: 16px;
}

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

.page-header h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.services-full {
    padding: 40px 20px 60px;
}

.service-full-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.service-full-item.reverse {
    flex-direction: column;
}

.service-full-left {
    min-height: 350px;
}

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

.service-full-right {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-full-right h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.service-full-right p {
    font-size: 16px;
    color: #444;
}

.service-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.spec {
    font-size: 15px;
    color: #555;
}

.spec strong {
    color: var(--text-dark);
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 16px;
    color: #666;
}

.booking-cta-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.booking-cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.contact-hero {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 18px;
    color: #555;
}

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.info-block {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.info-block .note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    min-height: 400px;
}

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

.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

.contact-cta {
    padding: 60px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
}

.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: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.confirmation-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.confirmation-steps {
    list-style-position: inside;
}

.confirmation-steps li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
}

.next-steps {
    margin-bottom: 40px;
}

.selected-service-text {
    font-size: 17px;
    color: #444;
    margin-bottom: 12px;
}

.next-steps p {
    font-size: 16px;
    color: #555;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-top: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 16px;
}

.legal-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
    color: #444;
}

@media (min-width: 768px) {
    .header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
    }

    .header-left {
        margin-bottom: 0;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-left {
        flex: 1;
        padding: 80px 60px;
    }

    .hero-right {
        flex: 1;
        min-height: auto;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .intro-split {
        flex-direction: row;
    }

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

    .intro-image {
        flex: 1;
        min-height: auto;
    }

    .intro-text {
        flex: 1;
        padding: 80px 60px;
    }

    .features-grid {
        flex-direction: row;
        padding: 80px 40px;
    }

    .service-item {
        flex-direction: row;
        gap: 60px;
    }

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

    .service-content {
        flex: 1;
        padding: 40px;
    }

    .service-image {
        flex: 1;
        min-height: auto;
    }

    .testimonial-split {
        flex-direction: row;
    }

    .testimonial-content {
        flex: 1;
        padding: 80px 60px;
    }

    .testimonial-image {
        flex: 1;
        min-height: auto;
    }

    .info-split {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        padding: 80px 60px;
    }

    .info-text {
        flex: 2;
    }

    .info-cta {
        flex: 1;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .page-hero-split {
        flex-direction: row;
        min-height: 500px;
    }

    .hero-content {
        flex: 1;
        padding: 80px 60px;
    }

    .hero-visual {
        flex: 1;
        min-height: auto;
    }

    .story-split {
        flex-direction: row;
        gap: 60px;
        padding: 80px 60px;
    }

    .story-image {
        flex: 1;
        margin-bottom: 0;
        min-height: auto;
    }

    .story-content {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
    }

    .team-split {
        flex-direction: row;
        gap: 60px;
        padding: 80px 60px;
    }

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

    .team-content {
        flex: 1;
    }

    .team-image {
        flex: 1;
        min-height: auto;
    }

    .service-full-item {
        flex-direction: row;
        gap: 60px;
    }

    .service-full-item.reverse {
        flex-direction: row-reverse;
    }

    .service-full-left {
        flex: 1;
        min-height: auto;
    }

    .service-full-right {
        flex: 1;
    }

    .contact-split {
        flex-direction: row;
        gap: 60px;
        padding: 80px 60px;
    }

    .contact-info {
        flex: 1;
        margin-bottom: 0;
    }

    .contact-visual {
        flex: 1;
        min-height: auto;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .services-split,
    .services-full {
        max-width: 1200px;
        margin: 0 auto;
    }
}