:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --secondary: #40916c;
    --accent: #74c69d;
    --bg-light: #f8faf9;
    --bg-dark: #1b4332;
    --text-dark: #1a1a1a;
    --text-light: #f8faf9;
    --text-muted: #5a5a5a;
    --border: #d8e2dc;
    --shadow: rgba(45, 106, 79, 0.12);
    --max-content: 720px;
    --max-wide: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

.ad-disclosure {
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.top-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease;
}

.article-hero {
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85), rgba(45, 106, 79, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    padding: 40px 24px;
    max-width: var(--max-content);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 28px;
}

.article-content {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 60px 24px;
}

.article-content h2 {
    font-size: 1.9rem;
    color: var(--primary-dark);
    margin: 48px 0 20px;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 32px 0 16px;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.inline-image {
    margin: 40px -60px;
    background-color: var(--border);
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.cta-inline {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}

.cta-inline h3 {
    color: var(--accent);
    margin-bottom: 12px;
}

.cta-inline p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: #95d5b2;
    transform: translateY(-2px);
    color: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.services-grid {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 80px 24px;
}

.services-header {
    text-align: center;
    max-width: var(--max-content);
    margin: 0 auto 50px;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 280px;
    background-color: var(--border);
}

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

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

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

.service-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.about-section {
    background: #fff;
    padding: 80px 24px;
}

.about-inner {
    max-width: var(--max-content);
    margin: 0 auto;
}

.about-inner h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    text-align: center;
}

.about-inner p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-section {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 80px 24px;
}

.contact-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    text-align: center;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

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

.contact-form {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

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

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

.footer-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: var(--accent);
}

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

.footer-bottom {
    max-width: var(--max-wide);
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.disclaimer-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cookie-inner a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

.btn-reject:hover {
    background: #c9d5cf;
}

.legal-page {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-page h1 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 32px 0 16px;
}

.legal-page p,
.legal-page li {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 24px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.thanks-content .selected-service {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.2rem;
    margin: 20px 0;
}

.wide-section {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 80px 24px;
}

.split-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.split-image {
    flex: 1;
    background-color: var(--border);
}

.split-image img {
    width: 100%;
    display: block;
}

.bg-white {
    background: #fff;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        height: 200px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .inline-image {
        margin: 30px 0;
    }

    .split-block,
    .split-block.reverse {
        flex-direction: column;
    }

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

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