* {
    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: #fefefe;
}

.ad-notice {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px 25px 40px;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #2d6a4f;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 60px 40px 0;
    z-index: 2;
    align-self: center;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a3a2e;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    color: #52796f;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 40px;
    background: #d8f3dc;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.story-irregular {
    display: flex;
    padding: 120px 40px 100px;
    gap: 80px;
    background: #f8f9fa;
    align-items: center;
}

.story-block-left {
    flex: 0 0 48%;
    padding-right: 40px;
}

.story-block-left h2 {
    font-size: 38px;
    color: #1a3a2e;
    margin-bottom: 32px;
    line-height: 1.3;
}

.story-block-left p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 22px;
}

.story-image-right {
    flex: 1;
    transform: translateY(-40px);
    background: #b7e4c7;
}

.story-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.insight-overlap {
    padding: 100px 40px;
    position: relative;
    background: linear-gradient(135deg, #d8f3dc 0%, #95d5b2 100%);
}

.insight-card-float {
    max-width: 680px;
    margin-left: auto;
    margin-right: 120px;
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-60px);
}

.insight-card-float h3 {
    font-size: 32px;
    color: #1a3a2e;
    margin-bottom: 24px;
}

.insight-card-float p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 18px;
}

.trust-diagonal {
    display: flex;
    padding: 120px 40px;
    gap: 100px;
    transform: skewY(-2deg);
    background: white;
    margin: 60px 0;
}

.trust-content {
    flex: 0 0 42%;
    transform: skewY(2deg);
    padding-top: 40px;
}

.trust-content h2 {
    font-size: 40px;
    color: #1a3a2e;
    margin-bottom: 28px;
    line-height: 1.3;
}

.trust-content p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.trust-testimonials-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: skewY(2deg);
}

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-left: 4px solid #52796f;
}

.testimonial-card:first-child {
    margin-left: 40px;
}

.testimonial-card:last-child {
    margin-right: 40px;
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card span {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.benefits-stagger {
    padding: 100px 40px;
    background: #fefefe;
}

.benefits-stagger h2 {
    font-size: 42px;
    color: #1a3a2e;
    margin-bottom: 60px;
    padding-left: 20px;
}

.benefits-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    background: white;
    border: 1px solid #e9ecef;
    padding: 40px;
    flex: 0 0 calc(33.333% - 30px);
}

.benefit-wide {
    flex: 0 0 calc(50% - 20px);
    transform: translateY(-30px);
}

.benefit-high {
    transform: translateY(40px);
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 28px;
    background: #e9ecef;
}

.benefit-card h3 {
    font-size: 24px;
    color: #1a3a2e;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

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

.services-offset h2 {
    font-size: 44px;
    color: #1a3a2e;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 80px;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid #dee2e6;
    padding: 0;
    flex: 0 0 calc(45% - 25px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-left {
    transform: translateX(-30px);
}

.service-right {
    transform: translateX(30px);
}

.service-center {
    flex: 0 0 calc(50% - 25px);
}

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

.service-left:hover {
    transform: translateX(-30px) translateY(-5px);
}

.service-right:hover {
    transform: translateX(30px) translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #e9ecef;
}

.service-card h3 {
    font-size: 26px;
    color: #1a3a2e;
    margin: 25px 30px 15px;
}

.service-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin: 0 30px 20px;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    color: #2d6a4f;
    font-weight: 700;
    margin: 0 30px 20px;
}

.btn-select {
    background: #52796f;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 30px 30px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2d6a4f;
}

.btn-select.selected {
    background: #2d6a4f;
}

.form-diagonal {
    padding: 120px 40px;
    background: #f8f9fa;
    transform: skewY(-1deg);
    margin: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    transform: skewY(1deg);
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 16px;
}

.form-container > p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid #ced4da;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #52796f;
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #495057;
}

.btn-submit {
    background: #2d6a4f;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a3a2e;
}

.btn-submit:disabled {
    background: #ced4da;
    cursor: not-allowed;
}

.final-cta-irregular {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, #95d5b2 0%, #52796f 100%);
    color: white;
}

.final-cta-irregular h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.final-cta-irregular p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.footer-asymmetric {
    background: #1a3a2e;
    color: #d8f3dc;
    padding: 80px 40px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 8px;
}

.footer-col h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 6px;
    font-weight: 600;
}

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

.footer-col a {
    color: #b7e4c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #52796f;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #b7e4c7;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95d5b2;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 46, 0.98);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #d8f3dc;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #95d5b2;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #52796f;
    color: white;
}

.btn-cookie-accept:hover {
    background: #2d6a4f;
}

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

.btn-cookie-reject:hover {
    background: rgba(82, 121, 111, 0.2);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 80px 60px;
    background: white;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-container h1 {
    font-size: 42px;
    color: #2d6a4f;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 18px;
}

.thanks-service {
    font-size: 20px;
    color: #2d6a4f;
    font-weight: 600;
    margin: 30px 0;
}

.btn-home {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: #52796f;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #2d6a4f;
}

.page-header {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #d8f3dc 0%, #95d5b2 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a3a2e;
    margin-bottom: 16px;
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px 80px;
}

.page-content h2 {
    font-size: 32px;
    color: #1a3a2e;
    margin: 50px 0 24px;
}

.page-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 35px 0 18px;
}

.page-content p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.page-content li {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

.contact-block {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #52796f;
}

.contact-block h3 {
    font-size: 22px;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

    .hero-content-offset {
        flex: 1;
        padding: 40px 20px;
    }

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

    .story-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .story-block-left {
        flex: 1;
    }

    .trust-diagonal {
        flex-direction: column;
        gap: 40px;
    }

    .trust-content {
        flex: 1;
    }

    .benefits-grid-irregular {
        flex-direction: column;
    }

    .benefit-card,
    .benefit-wide {
        flex: 1;
    }

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

    .service-card,
    .service-left,
    .service-right,
    .service-center {
        flex: 1;
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .nav-floating {
        padding: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}