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

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2c;
    --accent-color: #8fbc5a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background-color: #fffbea;
    border-bottom: 1px solid #f0e68c;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #8b7500;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

.btn-reject:hover {
    border-color: var(--text-dark);
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.75), rgba(74, 124, 44, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
}

.intro-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.intro-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 56px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.btn-select-service,
.btn-primary,
.btn-secondary,
.btn-submit {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-select-service,
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-select-service:hover,
.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

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

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 36px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.about-preview {
    padding: 80px 0;
}

.about-content-card {
    background-color: var(--bg-white);
    padding: 56px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin-left: 80px;
}

.about-content-card h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-content-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow::after {
    content: '→';
}

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

.disclaimer-card {
    background-color: #fef9f3;
    border-left: 4px solid var(--accent-color);
    padding: 32px;
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.page-hero {
    background-color: var(--primary-color);
    padding: 80px 0;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    text-align: center;
}

.hero-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-top: 16px;
}

.about-story {
    padding: 80px 0;
}

.story-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.story-image-card {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.story-text-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.story-text-card h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-text-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title-center {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 56px;
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.value-card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    width: calc(50% - 12px);
    min-width: 300px;
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.team-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.philosophy-card {
    background-color: var(--bg-light);
    padding: 56px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.philosophy-card h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 28px;
    text-align: center;
}

.philosophy-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.sustainability-section {
    padding: 80px 0;
}

.sustainability-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.sustainability-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.sustainability-content {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.sustainability-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.sustainability-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-card-centered {
    background-color: var(--primary-color);
    padding: 64px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-centered h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-card-centered p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-card-centered .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-card-centered .btn-primary:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.form-section-alt {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card-floating {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-card-floating h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.form-card-floating > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 36px;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 48px;
}

.contact-info-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
    user-select: text;
    cursor: text;
}

.email-note {
    font-size: 14px;
    margin-top: 8px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.hours-list li span {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-image-block {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-height: 900px;
}

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

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

.directions-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.directions-card h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.directions-content {
    display: flex;
    gap: 40px;
}

.direction-option {
    flex: 1;
}

.direction-option h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.direction-option p {
    color: var(--text-light);
    line-height: 1.7;
}

.visit-cta {
    padding: 60px 0;
}

.cta-box {
    background-color: var(--bg-white);
    padding: 56px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-box h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 17px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 64px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-card h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-selected {
    font-size: 17px;
    color: var(--text-dark);
}

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

.next-steps h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.next-steps ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.update-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: var(--bg-light);
}

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

.cookies-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        width: calc(50% - 10px);
    }

    .story-layout,
    .team-layout,
    .sustainability-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .about-content-card {
        margin-left: 0;
    }

    .directions-content {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .thanks-card {
        padding: 40px 24px;
    }

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