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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2d;
    --accent-earth: #8b6f47;
    --light-bg: #f4f7f0;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --white: #ffffff;
    --border-subtle: #d4ddc8;
}

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

.ad-disclosure {
    background: var(--light-bg);
    padding: 0.4rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border-subtle);
}

header {
    background: var(--white);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-section {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(74, 124, 45, 0.75));
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 820px;
    padding: 3rem;
    z-index: 2;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-earth);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #a58659;
    transform: translateY(-2px);
}

.section-alt {
    background: var(--light-bg);
    padding: 5rem 5%;
}

.section-standard {
    background: var(--white);
    padding: 5rem 5%;
}

.section-dark {
    background: var(--primary-green);
    color: var(--white);
    padding: 5rem 5%;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
    max-width: 680px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.flex-container {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.flex-item {
    flex: 1;
    min-width: 300px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
}

.image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
    background-color: var(--light-bg);
}

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

.content-block {
    margin-bottom: 2.5rem;
}

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

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

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 6px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-subtle);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

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

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

.footer-section a:hover {
    color: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.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-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #5a9239;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--secondary-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info strong {
    color: var(--primary-green);
}

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

.grid-services .service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

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

.cta-inline:hover {
    color: var(--accent-earth);
    border-color: var(--accent-earth);
}

.disclaimer {
    background: #fffbe6;
    border-left: 4px solid var(--accent-earth);
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.reference-list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-subtle);
}

.reference-list h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.reference-list ol {
    margin-left: 2rem;
}

.reference-list li {
    margin-bottom: 1rem;
}

.reference-list a {
    color: var(--secondary-green);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.citation:hover {
    text-decoration: underline;
}

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

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

    .flex-container {
        flex-direction: column;
    }

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

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