:root {
    --primary: #2c5f4c;
    --primary-dark: #1d4235;
    --secondary: #e8a54b;
    --accent: #7a9e8a;
    --text-dark: #2b2b2b;
    --text-light: #5a5a5a;
    --bg-light: #fafaf8;
    --bg-cream: #f5f2eb;
    --bg-dark: #2c3e35;
    --white: #ffffff;
    --border: #d4d4d4;
    --shadow: rgba(44, 95, 76, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.ad-disclosure {
    background-color: var(--bg-cream);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 720px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 560px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #d4942f;
    color: var(--text-dark);
}

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 48px;
}

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

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

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--accent);
    border-radius: 12px;
    overflow: hidden;
    min-height: 360px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

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

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

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

.features-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 24px;
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-label {
    font-size: 16px;
    color: var(--text-light);
}

.section-dark .feature-label {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-block {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-size: 120px;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-location {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 24px var(--shadow);
    max-width: 640px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 76, 0.15);
}

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

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-list strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

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

.disclaimer {
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.disclaimer strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px var(--shadow);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

.cookie-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-text a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background-color: var(--bg-cream);
}

.page-hero {
    background-color: var(--primary);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}

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

.content-section h2 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

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

.content-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.thanks-container {
    text-align: center;
    padding: 100px 24px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.inline-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

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

.inline-cta p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.about-values {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    padding: 28px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow);
}

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

.value-item p {
    font-size: 15px;
    color: var(--text-light);
}

.process-steps {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 32px 24px;
    background-color: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 16px var(--shadow);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px var(--shadow);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .split-layout.reverse {
        flex-direction: column;
    }

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

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

    .features-row {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 50%;
    }

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

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

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

    .hero h1 {
        font-size: 32px;
    }

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

    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .feature-item {
        flex: 1 1 100%;
    }
}
