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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc8f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9faf8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #5a8c3a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    display: inline-block;
    align-self: flex-start;
}

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

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

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

.hero-section {
    background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(45, 80, 22, 0.7)),
                url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?w=1600&h=800&fit=crop') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    padding: 80px 20px;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-inline {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

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

.cta-text {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: color 0.3s;
}

.cta-text:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

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

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.approach-section {
    padding: 90px 20px;
    background-color: #e8f5e9;
}

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

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

.card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 20px 20px 15px;
}

.card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

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

.asymmetric-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.large-content {
    flex: 2;
}

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

.large-content p {
    font-size: 19px;
    color: var(--text-light);
}

.small-image {
    flex: 1;
}

.small-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-pricing-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 26px;
    color: var(--primary-color);
}

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

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.benefits-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 22px;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

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

.testimonial {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

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

.reverse-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-left {
    flex: 1;
}

.image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-right {
    flex: 1;
}

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

.process-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 30px;
}

.process-steps li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.process-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background-color: var(--secondary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

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

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff9e6;
    border-top: 3px solid #f0e68c;
    border-bottom: 3px solid #f0e68c;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
}

.footer {
    background-color: #1a3a0f;
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 15px;
    text-align: center;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.sticky-cta a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #6c6c6c;
    color: white;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    font-weight: 300;
}

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

.mission-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

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

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

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

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

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

.value-card p {
    color: var(--text-light);
}

.approach-detail-section {
    padding: 90px 20px;
    background-color: #f0f8f0;
}

.approach-detail-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-block {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.approach-block h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.certifications-section h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.certifications-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-about-section,
.cta-services-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-box {
    background-color: var(--bg-white);
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-content {
    flex: 1;
}

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

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

.service-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

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

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.contact-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.contact-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-details-section {
    padding: 70px 20px;
    background-color: var(--bg-light);
}

.contact-details-section h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.location-section h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.areas-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.areas-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 17px;
}

.areas-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

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

.info-box {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.info-box h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.checklist {
    list-style: none;
    margin-top: 20px;
}

.checklist li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-info {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info strong {
    color: var(--primary-color);
    font-size: 18px;
}

.next-steps {
    list-style: none;
    counter-reset: step;
    margin-top: 20px;
}

.next-steps li {
    counter-increment: step;
    padding: 12px 0 12px 40px;
    position: relative;
    color: var(--text-light);
    margin-bottom: 10px;
}

.next-steps li:before {
    content: counter(step);
    position: absolute;
    left: 0;
    background-color: var(--secondary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.btn-primary:hover {
    opacity: 0.9;
}

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

.btn-secondary:hover {
    opacity: 0.9;
}

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

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

.legal-page h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

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

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

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

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

    .nav {
        flex-grow: 1;
        justify-content: flex-end;
    }

    .ad-label {
        order: -1;
    }

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

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

    .card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .asymmetric-layout {
        flex-direction: row;
    }

    .service-items {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .testimonial {
        flex: 1;
    }

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

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

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

    .approach-blocks {
        flex-direction: row;
    }

    .approach-block {
        flex: 1;
    }

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

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

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

    .contact-block {
        flex: 1;
    }

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

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

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

    .footer-col {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 52px;
    }

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