* {
    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;
    overflow-x: hidden;
}

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

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 5%;
}

.hero-content-offset {
    width: 45%;
    position: relative;
    z-index: 10;
    padding-left: 8%;
    padding-top: 80px;
}

.hero-title-stacked {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    color: #1a252f;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-text-narrow {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 420px;
    margin-bottom: 45px;
}

.cta-hero {
    display: inline-block;
    padding: 18px 42px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-offset {
    display: flex;
    align-items: center;
    padding: 120px 8%;
    gap: 80px;
    position: relative;
}

.intro-block-left {
    width: 48%;
    padding-right: 40px;
}

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

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

.intro-visual-right {
    width: 42%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    top: -60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
}

.services-irregular {
    padding: 100px 6%;
    background-color: #f8f9fa;
}

.section-header-asymmetric {
    margin-left: 12%;
    margin-bottom: 70px;
    max-width: 550px;
}

.section-header-asymmetric h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.section-header-asymmetric p {
    font-size: 19px;
    color: #4a5568;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 30px);
    min-width: 320px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-elevated {
    position: relative;
    top: -30px;
}

.card-shifted {
    position: relative;
    left: 20px;
}

.card-overlap {
    position: relative;
    top: 40px;
}

.card-floating {
    position: relative;
    top: -20px;
    right: -15px;
}

.card-tilted {
    position: relative;
    left: -25px;
    top: 25px;
}

.card-stacked {
    position: relative;
    right: 30px;
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-asymmetric {
    padding: 100px 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.testimonial-overlay {
    max-width: 700px;
    margin-left: 8%;
}

.testimonial-overlay blockquote {
    color: #fff;
}

.testimonial-overlay p {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 25px;
}

.testimonial-overlay cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.about-preview-diagonal {
    display: flex;
    align-items: center;
    padding: 120px 7%;
    gap: 70px;
    position: relative;
}

.about-text-block {
    width: 50%;
    padding-right: 50px;
}

.about-text-block h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.link-inline {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2980b9;
}

.about-image-overlap {
    width: 45%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    top: -40px;
    left: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-section-irregular {
    padding: 100px 8%;
    background-color: #1a252f;
    position: relative;
}

.cta-block-offset {
    max-width: 650px;
    margin-left: 10%;
    text-align: left;
}

.cta-block-offset h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-block-offset p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.cta-primary-large:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.form-section-asymmetric {
    padding: 120px 8%;
    background-color: #f8f9fa;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 20%;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -30px;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a252f;
    font-weight: 700;
}

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.footer-asymmetric {
    background-color: #1a252f;
    color: #fff;
    padding: 80px 8% 40px;
}

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

.footer-block {
    flex: 1;
    min-width: 220px;
}

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

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

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.email-display {
    color: rgba(255, 255, 255, 0.8);
    cursor: default;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 37, 47, 0.98);
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}

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

.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;
    white-space: nowrap;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .hero-content-offset {
        width: 100%;
        padding-left: 5%;
        padding-top: 40px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        margin-top: 50px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 80px 5% 60px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 50px;
    }

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
    }

    .intro-visual-right {
        top: 0;
    }

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

    .about-preview-diagonal {
        flex-direction: column;
        gap: 50px;
    }

    .about-text-block,
    .about-image-overlap {
        width: 100%;
    }

    .about-image-overlap {
        top: 0;
        left: 0;
    }

    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 25px;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .service-card {
        width: 100%;
    }

    .nav-floating {
        position: static;
        border-radius: 0;
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

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

    .section-header-asymmetric {
        margin-left: 0;
    }

    .cta-block-offset {
        margin-left: 0;
    }

    .form-container-offset {
        padding: 35px 25px;
    }
}
