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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background: #ffffff;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #4a7c59;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #3d6b4a;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 12px;
    color: #636e72;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a7c59;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(45, 52, 54, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #4a7c59;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2d3436;
    text-align: left;
}

.services-preview-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header-offset {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-header-offset h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2d3436;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #636e72;
    line-height: 1.7;
}

.services-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-wide {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card-wide:hover {
    transform: translateY(-4px);
}

.service-card-wide.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    min-height: 320px;
}

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d3436;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.btn-service {
    align-self: flex-start;
    padding: 12px 28px;
    background: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #3d6b4a;
    transform: translateX(4px);
}

.approach-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3436;
    font-weight: 700;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-item {
    padding: 32px;
    background: #ffffff;
    border-left: 4px solid #4a7c59;
    border-radius: 4px;
}

.approach-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 700;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2d3436;
    font-weight: 700;
}

.form-section > p {
    text-align: center;
    font-size: 16px;
    color: #636e72;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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: #4a7c59;
}

.btn-submit {
    padding: 14px 32px;
    background: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3d6b4a;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 0;
    background: #4a7c59;
    color: #ffffff;
    text-align: center;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.footer {
    background: #2d3436;
    color: #ffffff;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background: #1e2426;
    padding: 30px 0;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    background: #1e2426;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d3436;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 30px;
}

.about-hero {
    padding: 100px 0 60px;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2d3436;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #636e72;
}

.about-story {
    padding: 80px 0;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
    font-weight: 700;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.about-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3436;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 32px;
    background: #ffffff;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #4a7c59;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

.services-hero {
    padding: 100px 0 60px;
    background: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.services-hero p {
    font-size: 18px;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
}

.services-list-section {
    padding: 80px 0;
}

.contact-hero {
    padding: 100px 0 60px;
    background: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #636e72;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    padding: 32px;
    background: #f8f9fa;
    border-radius: 4px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 700;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

.legal-page {
    padding: 100px 0;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2d3436;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3436;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

    .service-image {
        flex: 0 0 250px;
    }

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