:root {
    --color-primary: #2d5a27;
    --color-secondary: #8cb369;
    --color-accent: #f4a259;
    --color-dark: #1a1a1a;
    --color-light: #f9f7f3;
    --color-muted: #6b6b6b;
    --color-border: #e0ddd5;
    --color-fallback: #d4e5d0;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 400;
}

.ad-disclosure {
    background-color: var(--color-muted);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    margin-left: 1rem;
}

.nav-main {
    display: flex;
    align-items: center;
}

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

.nav-main a {
    color: var(--color-dark);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 5%;
    background-color: var(--color-light);
    position: relative;
    z-index: 2;
}

.hero-content::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, var(--color-light), transparent);
    z-index: 3;
}

.hero-tagline {
    font-size: 0.9rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: var(--color-fallback);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: #234520;
    color: #fff;
}

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

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

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

.btn-accent:hover {
    background-color: #e08a3a;
    color: #fff;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: #fff;
}

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

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

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

.section-header-offset {
    padding-left: 10%;
    margin-bottom: 3rem;
}

.intro-block {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text {
    flex: 1;
}

.intro-aside {
    flex: 0 0 280px;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.intro-aside h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 180px;
    background-color: var(--color-fallback);
    position: relative;
}

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

.service-card-content {
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card-description {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card-price {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
}

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

.offset-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.offset-content {
    flex: 1;
}

.offset-image {
    flex: 0 0 45%;
    position: relative;
    background-color: var(--color-fallback);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.offset-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offset-image-float {
    margin-top: -3rem;
}

.features-stacked {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-section {
    background-color: var(--color-primary);
    color: #fff;
    padding: 4rem 0;
}

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

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-inline {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-inline h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 0 0 350px;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    flex: 1;
}

.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

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

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

.footer-brand {
    flex: 0 0 300px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.disclaimer {
    background-color: var(--color-border);
    padding: 2rem 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.disclaimer p {
    margin-bottom: 0.5rem;
}

.page-header {
    background-color: var(--color-primary);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
}

.content-page {
    padding: 4rem 0;
}

.content-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--color-secondary);
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
    border-color: #fff;
}

.working-hours {
    list-style: none;
}

.working-hours li {
    padding: 0.3rem 0;
}

.about-intro {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-main {
    flex: 1;
}

.about-sidebar {
    flex: 0 0 320px;
    background-color: var(--color-fallback);
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
    position: relative;
}

.about-sidebar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.value-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.value-number {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-detail {
    margin-bottom: 4rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-item:last-child {
    border-bottom: none;
}

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

.service-detail-pricing {
    flex: 0 0 200px;
    text-align: right;
}

.service-detail-price {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

.service-detail-unit {
    color: var(--color-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        flex: none;
        padding: 3rem 5%;
    }

    .hero-content::after {
        display: none;
    }

    .hero-image {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .offset-layout,
    .offset-layout-reverse {
        flex-direction: column;
    }

    .offset-image {
        flex: none;
        width: 100%;
        min-height: 300px;
    }

    .offset-image-float {
        margin-top: 0;
    }

    .intro-block {
        flex-direction: column;
    }

    .intro-aside {
        flex: none;
        width: 100%;
        margin-top: 2rem;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }

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

    .about-sidebar {
        flex: none;
        width: 100%;
        min-height: 300px;
    }

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

    .contact-info {
        flex: none;
        width: 100%;
    }

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

    .values-grid {
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

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

    h2 {
        font-size: 1.6rem;
    }

    .nav-main ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
    }

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

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

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

    .nav-main a {
        display: block;
        padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .ad-disclosure {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }

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

    .section {
        padding: 3rem 0;
    }

    .section-header-offset {
        padding-left: 0;
    }

    .form-container {
        padding: 2rem;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-col {
        flex: none;
    }

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

    .service-detail-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail-pricing {
        flex: none;
        text-align: left;
    }

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

    .value-item {
        flex: none;
    }
}
