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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #6b9b4e;
    --light-bg: #f8f9f5;
    --cream: #fdfdf8;
    --dark-text: #1a1a1a;
    --gray-text: #555555;
    --border-color: #e0e4d8;
}

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

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

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

header {
    background: var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.ad-notice {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
}

.hero-section {
    background: var(--light-bg);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(45,80,22,0.85), rgba(74,124,44,0.75));
    color: #fff;
    min-height: 500px;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-green);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--light-bg);
}

.section-dark {
    background: var(--primary-green);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.85);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.service-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-top: 0.5rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--gray-text);
}

.about-image {
    flex: 1 1 350px;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--secondary-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: var(--primary-green);
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.contact-detail {
    margin-bottom: 1.2rem;
    color: var(--gray-text);
}

.contact-detail strong {
    color: var(--dark-text);
    display: block;
    margin-bottom: 0.3rem;
}

footer {
    background: var(--primary-green);
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

.references-section {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.references-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.references-section ol {
    padding-left: 1.5rem;
}

.references-section li {
    margin-bottom: 0.8rem;
    color: var(--gray-text);
}

.references-section a {
    color: var(--secondary-green);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-green);
    transition: color 0.3s;
}

.references-section a:hover {
    color: var(--primary-green);
}

.citation {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-green);
    transition: color 0.3s;
}

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

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.disclaimer p {
    color: var(--dark-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.legal-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-green);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-green);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--gray-text);
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1 1 400px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: var(--accent-green);
    color: #fff;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.thanks-message {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-message h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.thanks-message p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    flex: 1 1 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.feature-item p {
    color: var(--gray-text);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

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