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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #f4a261;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d3436;
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 4px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
}

.hero-content-offset {
    width: 45%;
    padding: 4rem 0 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-content-offset h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content-offset p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: var(--bg-light);
}

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

.intro-offset {
    display: flex;
    align-items: center;
    gap: 5%;
    padding: 8rem 8%;
    background: var(--bg-light);
}

.intro-text-block {
    width: 55%;
}

.intro-text-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #555;
}

.intro-visual-card {
    width: 40%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(-2deg);
}

.services-irregular {
    padding: 8rem 8%;
}

.services-header-side {
    margin-bottom: 4rem;
    padding-left: 15%;
}

.services-header-side h2 {
    font-size: 3rem;
    color: var(--primary-color);
}

.services-header-side p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 2rem);
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.offset-top {
    margin-top: -40px;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

.service-card.offset-center {
    margin-top: -20px;
}

.service-card.offset-right {
    margin-top: 20px;
}

.service-card.offset-left {
    margin-top: -30px;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.service-card .price {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.form-diagonal-section {
    display: flex;
    min-height: 700px;
    position: relative;
    background: var(--primary-color);
}

.form-container-offset {
    width: 50%;
    padding: 5rem 8%;
    color: var(--light-text);
    z-index: 10;
}

.form-container-offset h2 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.form-container-offset p {
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-form-asymmetric {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-visual-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.form-visual-block img {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

.trust-section-overlay {
    padding: 8rem 8%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.trust-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.trust-grid-irregular {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    width: 30%;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.trust-item.offset {
    margin-top: 40px;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
}

.footer-asymmetric {
    background: var(--bg-dark);
    color: var(--light-text);
    padding: 4rem 8% 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-block-left,
.footer-block-center,
.footer-block-right {
    flex: 1;
    min-width: 250px;
}

.footer-block-left h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.footer-block-center li,
.footer-block-right li {
    margin-bottom: 0.5rem;
}

.footer-block-center a:hover,
.footer-block-right a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #aaa;
}

.about-hero-diagonal {
    padding: 12rem 8% 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3f1b 100%);
    color: var(--light-text);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.about-text-primary h1 {
    color: var(--light-text);
    font-size: 3.5rem;
}

.about-story-offset {
    display: flex;
    gap: 5%;
    padding: 8rem 8%;
    align-items: center;
}

.story-image-left {
    width: 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.story-content-right {
    width: 50%;
}

.story-content-right h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-section-irregular {
    padding: 8rem 8%;
    background: var(--bg-light);
}

.process-section-irregular h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 2.8rem;
}

.process-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-item {
    width: calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-item.offset-1 {
    margin-top: -20px;
}

.process-item.offset-2 {
    margin-top: 30px;
}

.process-item.offset-3 {
    margin-top: -30px;
}

.process-item.offset-4 {
    margin-top: 20px;
}

.process-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-asymmetric {
    display: flex;
    align-items: center;
    gap: 5%;
    padding: 8rem 8%;
}

.values-visual {
    width: 40%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.values-text {
    width: 55%;
}

.values-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.services-hero-offset {
    padding: 12rem 8% 5rem;
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.services-hero-offset h1 {
    color: var(--light-text);
}

.services-detailed {
    padding: 6rem 8%;
}

.service-detail-block {
    display: flex;
    gap: 5%;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail-block.left-aligned {
    flex-direction: row;
}

.service-detail-block.right-aligned {
    flex-direction: row-reverse;
}

.service-detail-block.centered {
    justify-content: center;
}

.service-detail-image {
    width: 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
    width: 50%;
}

.service-detail-content-full {
    width: 70%;
    text-align: center;
}

.service-detail-content h2,
.service-detail-content-full h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-features.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-features.inline li {
    padding: 0.6rem 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.service-features.inline li:before {
    display: none;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.warranty-info-offset {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.warranty-info-offset h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.warranty-terms {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.warranty-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.warranty-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-hero-diagonal {
    padding: 12rem 8% 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3f1b 100%);
    color: var(--light-text);
    text-align: center;
}

.contact-hero-diagonal h1 {
    color: var(--light-text);
}

.contact-info-asymmetric {
    display: flex;
    gap: 5%;
    padding: 8rem 8%;
    align-items: flex-start;
}

.contact-block-primary {
    width: 50%;
}

.contact-block-primary h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #555;
}

.contact-visual-offset {
    width: 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

.contact-additional {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.contact-faq {
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #555;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem 5rem;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.thanks-section {
    display: flex;
    align-items: center;
    gap: 5%;
    min-height: 80vh;
    padding: 10rem 8% 5rem;
}

.thanks-content {
    width: 50%;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-weight: 600;
    color: var(--accent-color);
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.thanks-visual {
    width: 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--light-text);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

@media (max-width: 968px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 2rem 5%;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    .intro-offset,
    .about-story-offset,
    .values-asymmetric,
    .contact-info-asymmetric,
    .thanks-section,
    .form-diagonal-section {
        flex-direction: column;
    }

    .intro-text-block,
    .intro-visual-card,
    .story-image-left,
    .story-content-right,
    .values-visual,
    .values-text,
    .contact-block-primary,
    .contact-visual-offset,
    .thanks-content,
    .thanks-visual,
    .form-container-offset {
        width: 100%;
    }

    .form-visual-block {
        display: none;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .trust-grid-irregular,
    .process-blocks,
    .warranty-terms {
        flex-direction: column;
    }

    .trust-item,
    .process-item {
        width: 100%;
        margin-top: 0 !important;
    }

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

    .service-detail-image,
    .service-detail-content,
    .service-detail-content-full {
        width: 100%;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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