* {
    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.7;
    color: #2a2a2a;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

.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-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 6%;
    position: relative;
}

.nav-brand a {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a2a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-items a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 10px;
}

.hero-asymmetric {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 6%;
    overflow: hidden;
}

.hero-content-offset {
    width: 48%;
    z-index: 2;
    position: relative;
    padding-right: 40px;
}

.hero-content-offset h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.hero-content-offset p {
    font-size: 19px;
    color: #555;
    margin-bottom: 38px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #3d6848;
    transform: translateY(-2px);
}

.hero-image-float {
    position: absolute;
    right: -8%;
    top: 12%;
    width: 58%;
    height: 76%;
    transform: rotate(3deg);
    background-color: #f4f1ed;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-offset {
    padding: 120px 6% 100px;
    display: flex;
    align-items: center;
    gap: 80px;
    background: #fafafa;
}

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

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.intro-image-right {
    flex: 1;
    background-color: #e8e4df;
}

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

.services-asymmetric {
    padding: 140px 6% 120px;
    background: white;
}

.section-header-diagonal {
    margin-bottom: 80px;
    transform: translateX(-20px);
}

.section-header-diagonal h2 {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-cards-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.service-card {
    width: calc(33.333% - 27px);
    background: white;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fafafa;
}

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

.card-position-1 {
    transform: translateY(20px);
}

.card-position-2 {
    transform: translateY(-30px);
}

.card-position-3 {
    transform: translateY(40px);
}

.card-position-4 {
    transform: translateY(-15px);
}

.card-position-5 {
    transform: translateY(25px);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d8d4cf;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 24px 20px;
}

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

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #4a7c59;
}

.btn-service.selected {
    background: #4a7c59;
}

.form-section-diagonal {
    padding: 120px 6%;
    background: #f4f1ed;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    transform: translateX(40px);
}

.form-container-offset h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-visual {
    flex: 1;
    height: 600px;
    transform: translateY(-60px) rotate(-2deg);
    background-color: #ddd7d0;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 100px 6%;
    background: white;
}

.trust-content-scattered {
    display: flex;
    gap: 100px;
    align-items: center;
}

.trust-block {
    flex: 1.2;
    transform: translateX(-30px);
}

.trust-block h3 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #fafafa;
    border-left: 4px solid #4a7c59;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #4a7c59;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.testimonials-overlap {
    padding: 120px 6% 140px;
    background: #fafafa;
}

.testimonials-overlap h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-grid-asymmetric {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background: white;
    border-left: 3px solid #4a7c59;
    position: relative;
}

.testimonial-card:nth-child(1) {
    transform: translateY(20px);
}

.testimonial-card:nth-child(2) {
    transform: translateY(-20px);
}

.testimonial-card:nth-child(3) {
    transform: translateY(10px);
}

.testimonial-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a;
}

.footer-asymmetric {
    background: #2a2a2a;
    color: white;
    padding: 80px 6% 40px;
}

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-block p {
    font-size: 14px;
    color: #ccc;
}

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

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

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #4a7c59;
}

.footer-disclaimer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    border-left: 3px solid #4a7c59;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 6%;
    text-align: center;
}

.thanks-container h1 {
    font-size: 54px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background: #fafafa;
    border-left: 4px solid #4a7c59;
}

.thanks-info strong {
    display: block;
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.btn-home {
    display: inline-block;
    padding: 16px 36px;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

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

.about-hero {
    padding: 100px 6% 80px;
    background: #fafafa;
}

.about-hero h1 {
    font-size: 58px;
    margin-bottom: 28px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 800px;
}

.about-hero p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
}

.about-content {
    padding: 100px 6%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.3;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-image {
    flex: 1;
    height: 500px;
    transform: translateY(40px);
    background-color: #e8e4df;
}

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

.services-page-hero {
    padding: 100px 6% 60px;
    background: white;
}

.services-page-hero h1 {
    font-size: 58px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
}

.services-list {
    padding: 80px 6% 120px;
    background: #fafafa;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    height: 350px;
    background-color: #ddd7d0;
}

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

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

.service-item-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-item-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.contact-page {
    padding: 100px 6%;
    background: white;
}

.contact-page h1 {
    font-size: 58px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2a2a2a;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    height: 600px;
    background-color: #e8e4df;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 100px 6% 120px;
    background: white;
}

.legal-page h1 {
    font-size: 52px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    font-weight: 600;
    color: #2a2a2a;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-image-float {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset,
    .form-section-diagonal,
    .about-content,
    .contact-grid {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .service-item {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .nav-items {
        gap: 20px;
        flex-wrap: wrap;
    }

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

    .service-card {
        width: 100%;
    }

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

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