:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d2a;
    --secondary: #7ba05b;
    --accent: #c4a35a;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fafaf8;
    --bg-alt: #f0efe8;
    --bg-dark: #e8e7de;
    --white: #ffffff;
    --border: #d4d3c9;
    --shadow: rgba(45, 90, 61, 0.08);
    --radius: 6px;
    --max-width: 1140px;
    --content-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.ad-disclosure {
    background: var(--bg-alt);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    font-family: 'Segoe UI', Arial, sans-serif;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo span {
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

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

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

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-editorial .content-narrow {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-wrap {
    margin: 40px 0;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.btn {
    display: inline-block;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

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

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

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

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

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

.btn-accent:hover {
    background: #b39448;
    color: var(--white);
}

.section {
    padding: 70px 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

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

.article-block {
    margin-bottom: 50px;
}

.article-block:last-child {
    margin-bottom: 0;
}

.inline-image {
    margin: 30px 0;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 0 0 20px 30px;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.services-inline {
    margin: 40px 0;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: box-shadow 0.2s ease;
}

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

.service-card-image {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.service-card-content {
    flex: 1;
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 15px;
}

.service-price {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.cta-inline {
    background: var(--bg-alt);
    border-left: 4px solid var(--secondary);
    padding: 28px 32px;
    margin: 40px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.cta-inline h3 {
    margin-bottom: 12px;
}

.cta-inline p {
    margin-bottom: 16px;
}

.quote-block {
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin: 36px 0;
    font-style: italic;
    color: var(--text-light);
}

.quote-block cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: var(--text);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-number {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
}

.team-grid {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--bg-dark);
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    margin: 40px 0;
}

.form-section h3 {
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    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;
}

.form-submit {
    text-align: center;
    margin-top: 28px;
}

.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-inner p {
    margin-bottom: 0;
    font-size: 14px;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 14px;
}

.page-header {
    background: var(--bg-alt);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 28px;
}

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

.legal-content li {
    margin-bottom: 8px;
}

.contact-info {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-text span {
    color: var(--text-light);
    font-size: 15px;
}

.thanks-section {
    text-align: center;
    padding: 100px 20px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-section h1 {
    color: var(--primary);
}

.disclaimer {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 13px;
    color: var(--text-light);
}

.disclaimer strong {
    color: var(--text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

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

.services-grid .service-card-image {
    width: 100%;
    height: 160px;
}

.cta-sticky {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cta-sticky.show {
    opacity: 1;
    visibility: visible;
}

.cta-sticky a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.3);
}

.cta-sticky a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-image-wrap img {
        height: 280px;
    }

    .inline-image.float-left,
    .inline-image.float-right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card-image {
        width: 100%;
        height: 140px;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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