* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2830;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

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

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

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

.cookie-link {
    color: #8ab4a0;
    text-decoration: underline;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
}

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

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

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

.ad-disclosure {
    color: #7f8c8d;
    font-size: 13px;
    font-style: italic;
    border-left: 1px solid #e0e0e0;
    padding-left: 20px;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5a3d;
    display: block;
}

.hero-asymmetric {
    padding: 0;
    overflow: hidden;
}

.hero-offset-wrapper {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f0eb 100%);
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a3326;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 19px;
    color: #3d5a4e;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-image-block {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 60px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #3d6b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74,124,89,0.3);
}

.intro-offset {
    padding: 100px 0 80px;
    background: #ffffff;
}

.intro-grid {
    display: flex;
    gap: 70px;
    align-items: center;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-top: -120px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-content-right {
    flex: 1;
    padding-left: 40px;
}

.intro-content-right h2 {
    font-size: 38px;
    color: #1a3326;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-content-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 80px;
    padding-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a3326;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
}

.service-medium {
    flex: 1 1 calc(45% - 15px);
}

.service-small {
    flex: 1 1 calc(35% - 15px);
}

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

.service-offset-top {
    flex: 1 1 calc(40% - 15px);
    margin-top: 60px;
}

.service-offset-bottom {
    flex: 1 1 calc(50% - 15px);
    margin-top: -40px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a3326;
    margin-bottom: 15px;
}

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

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

.service-content-horizontal {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-text {
    flex: 1;
    padding: 40px;
}

.service-image-inline {
    flex: 1;
    height: 350px;
    overflow: hidden;
}

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

.btn-select-service {
    padding: 12px 30px;
    background: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #3d6b4e;
    transform: translateY(-2px);
}

.form-section-diagonal {
    padding: 100px 0;
    background: linear-gradient(125deg, #e8f0eb 0%, #f8faf9 100%);
    position: relative;
}

.form-wrapper-offset {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a3326;
    margin-bottom: 20px;
    line-height: 1.3;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    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;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    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: #3d6b4e;
}

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

.trust-content-offset {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-image-left {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.trust-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-text-right {
    flex: 1;
}

.trust-text-right h2 {
    font-size: 36px;
    color: #1a3326;
    margin-bottom: 25px;
    line-height: 1.3;
}

.trust-text-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #4a7c59;
    text-decoration: none;
    border: 2px solid #4a7c59;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-secondary:hover {
    background: #4a7c59;
    color: #ffffff;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f9fafb;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    border-left: 4px solid #4a7c59;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.disclaimer-box h3 {
    font-size: 20px;
    color: #1a3326;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.8;
}

.main-footer {
    background: #1a2830;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    color: #b8c5d0;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #b8c5d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #8a9ba8;
    font-size: 14px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.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;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
}

.thanks-container h1 {
    font-size: 38px;
    color: #1a3326;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-service-info {
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-service-info strong {
    color: #4a7c59;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a3326;
    margin-bottom: 15px;
}

.legal-content .last-updated {
    color: #7f8c8d;
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2d5a3d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #3d6b4e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    color: #1a3326;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 24px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.contact-info-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-offset-wrapper {
        flex-direction: column;
    }

    .hero-image-block {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

    .intro-grid,
    .trust-content-offset {
        flex-direction: column;
    }

    .intro-visual {
        margin-top: 0;
    }

    .service-content-horizontal {
        flex-direction: column;
    }

    .form-wrapper-offset {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

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

    .service-large,
    .service-medium,
    .service-small,
    .service-offset-top,
    .service-offset-bottom {
        flex: 1 1 100%;
        margin-top: 0;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}