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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

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

.header-asymmetric {
    position: relative;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure {
    position: absolute;
    top: 10px;
    right: 40px;
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.logo-offset {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links-split {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-links-split a:hover {
    color: #3498db;
}

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

.hero-text-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
    margin-top: -60px;
}

.hero-title-large {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.cta-primary-offset {
    display: inline-block;
    padding: 18px 48px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary-offset:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transform: rotate(3deg);
}

.intro-irregular {
    display: flex;
    align-items: center;
    padding: 120px 40px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image-right {
    flex: 1;
    transform: translateY(-40px);
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.benefits-staggered {
    padding: 100px 40px;
    background-color: #f8f9fa;
    position: relative;
}

.benefit-card-offset {
    max-width: 480px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
}

.benefit-1 {
    margin-left: 10%;
}

.benefit-2 {
    margin-left: 25%;
}

.benefit-3 {
    margin-left: 45%;
}

.benefit-4 {
    margin-left: 60%;
}

.benefit-card-offset h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.services-overlap {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-diagonal {
    max-width: 700px;
    margin-bottom: 80px;
    margin-left: 10%;
}

.services-header-diagonal h2 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #1a252f;
}

.services-header-diagonal p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.service-card {
    width: calc(50% - 30px);
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin: 28px 30px 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 30px 24px;
    color: #4a5568;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 30px 20px;
}

.select-service-btn {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.select-service-btn.selected {
    background-color: #27ae60;
}

.service-offset-1 {
    margin-top: 0;
}

.service-offset-2 {
    margin-top: 60px;
}

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

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

.service-offset-5 {
    margin-top: -20px;
    width: 100%;
}

.form-section-diagonal {
    padding: 100px 40px;
    background-color: #f8f9fa;
    position: relative;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
}

.form-container-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-asymmetric input,
.contact-form-asymmetric textarea {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form-asymmetric input:focus,
.contact-form-asymmetric textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form-asymmetric input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn-diagonal {
    padding: 18px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-diagonal:hover {
    background-color: #1a252f;
}

.form-image-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 40%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transform: rotate(-2deg);
}

.testimonials-irregular {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-title-offset {
    font-size: 48px;
    margin-bottom: 80px;
    margin-left: 15%;
    color: #1a252f;
}

.testimonial-cards-staggered {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-card {
    max-width: 650px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-1 {
    margin-left: 5%;
}

.testimonial-2 {
    margin-left: 30%;
}

.testimonial-3 {
    margin-left: 50%;
}

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

.testimonial-card cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 80px 40px 30px;
}

.footer-content-split {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 60px;
    gap: 60px;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
}

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

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

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

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

    .hero-text-offset {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

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

    .intro-irregular {
        flex-direction: column;
    }

    .intro-block-left {
        padding-left: 0;
    }

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

    .service-card {
        width: 100%;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .form-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        transform: none;
    }

    .benefit-card-offset {
        margin-left: 0 !important;
    }

    .testimonial-card {
        margin-left: 0 !important;
    }

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

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 42px;
    }

    .nav-links-split {
        gap: 20px;
        flex-wrap: wrap;
    }

    .services-header-diagonal {
        margin-left: 0;
    }

    .services-header-diagonal h2 {
        font-size: 36px;
    }
}