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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px 30px 80px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    transform: translateX(-15px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    transform: translateX(25px);
}

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    padding: 80px 50px;
    overflow: hidden;
}

.hero-text-block {
    width: 48%;
    padding: 60px 80px 60px 100px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.hero-image-offset {
    width: 52%;
    position: absolute;
    right: -100px;
    top: 100px;
    transform: rotate(-3deg);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8f5e9;
}

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 120px 60px 100px 140px;
    gap: 80px;
    background: linear-gradient(125deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.intro-diagonal > * {
    transform: skewY(2deg);
}

.intro-content-left {
    width: 55%;
}

.intro-content-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

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

.intro-image-right {
    width: 45%;
    transform: translateY(40px) translateX(30px) skewY(2deg);
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #f1f8e9;
}

.services-overlap {
    padding: 100px 70px 120px 50px;
    position: relative;
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 800;
    transform: translateX(120px);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    position: relative;
}

.service-card {
    width: calc(33.333% - 30px);
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

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

.card-offset-1 {
    transform: translateY(0) translateX(-30px);
}

.card-offset-2 {
    transform: translateY(50px) translateX(20px);
}

.card-offset-3 {
    transform: translateY(-30px) translateX(40px);
}

.card-offset-4 {
    transform: translateY(40px) translateX(-50px);
}

.card-offset-5 {
    transform: translateY(-20px) translateX(10px);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin: 20px 25px 15px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-diagonal {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 90px 100px 90px 200px;
    margin: 100px 0;
    transform: skewY(-3deg);
}

.cta-content {
    transform: skewY(3deg);
    text-align: left;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-content p {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.form-section-offset {
    padding: 100px 60px 120px 150px;
    background: #f8f9fa;
}

.form-container-asymmetric {
    max-width: 650px;
    transform: translateX(80px);
}

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

.form-container-asymmetric > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonials-stacked {
    padding: 100px 80px 100px 120px;
}

.testimonials-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    transform: translateX(60px);
}

.testimonial-block {
    background: #f8f9fa;
    padding: 35px 45px;
    border-radius: 8px;
    margin-bottom: 30px;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-left {
    transform: translateX(-40px);
}

.testimonial-right {
    transform: translateX(120px);
}

.testimonial-center {
    transform: translateX(40px);
}

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

.testimonial-author {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

.footer-asymmetric {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    padding: 70px 80px 40px 120px;
}

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

.footer-block {
    flex: 1;
}

.footer-about {
    transform: translateX(-30px);
}

.footer-links {
    transform: translateX(20px);
}

.footer-contact {
    transform: translateX(40px);
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #27ae60;
}

.footer-block p {
    font-size: 15px;
    color: #cbd5e0;
    line-height: 1.7;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #27ae60;
}

.footer-email {
    color: #cbd5e0;
    font-weight: 500;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    transform: translateX(30px);
}

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

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

.footer-copyright p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

.cookie-link {
    color: #27ae60;
    text-decoration: underline;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
        padding: 50px 30px;
    }

    .hero-text-block {
        width: 100%;
        padding: 40px;
        transform: none;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 30px;
    }

    .intro-diagonal {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
        transform: none;
    }

    .intro-content-left,
    .intro-image-right {
        width: 100%;
        transform: none;
    }

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

    .service-card {
        width: 100%;
        transform: none !important;
    }

    .section-title-offset {
        transform: none;
    }

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-brand {
        transform: none;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        transform: none;
    }

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

    .cta-diagonal {
        padding: 50px 30px;
        transform: none;
    }

    .cta-content {
        transform: none;
    }

    .form-section-offset {
        padding: 60px 30px;
    }

    .form-container-asymmetric {
        transform: none;
    }

    .testimonials-stacked {
        padding: 60px 30px;
    }

    .testimonial-block {
        transform: none !important;
    }

    .footer-asymmetric {
        padding: 50px 30px;
    }

    .footer-block {
        transform: none !important;
    }
}