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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px 25px 40px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 50px;
    width: 58%;
    height: calc(100% - 100px);
    background: #e0e0e0;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-floating {
    position: relative;
    z-index: 10;
    max-width: 520px;
    padding: 80px 40px 80px 60px;
    background: rgba(255, 255, 255, 0.97);
    margin-left: 60px;
    margin-top: -40px;
}

.hero-content-floating h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content-floating p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #3a3a3a;
}

.intro-offset {
    display: flex;
    align-items: flex-start;
    padding: 120px 60px;
    gap: 80px;
    background: #ffffff;
}

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

.intro-text-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-image-overlap {
    flex: 1;
    margin-top: -80px;
    background: #e8e8e8;
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-irregular {
    padding: 100px 40px;
    background: #f8f8f8;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 70px;
    margin-left: 120px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card-offset-left {
    margin-left: 80px;
    margin-right: auto;
    max-width: 1100px;
}

.card-offset-right {
    margin-left: auto;
    margin-right: 80px;
    max-width: 1100px;
}

.card-offset-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.service-image {
    flex: 1;
    background: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #4a4a4a;
}

.cta-floating {
    padding: 100px 60px;
    background: #1a1a1a;
    position: relative;
}

.cta-content-overlap {
    max-width: 600px;
    margin-left: 120px;
    color: #ffffff;
}

.cta-content-overlap h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content-overlap p {
    font-size: 18px;
    color: #d0d0d0;
}

.form-section {
    padding: 100px 60px;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin-left: 100px;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #5a5a5a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    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: #1a1a1a;
}

.btn-submit {
    padding: 18px 45px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3a3a3a;
}

.footer-asymmetric {
    background: #2a2a2a;
    color: #d0d0d0;
    padding: 80px 60px 40px 60px;
}

.footer-main {
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-block {
    flex: 1;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-block a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #4a4a4a;
}

.cookie-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: #1a1a1a;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #e0e0e0;
    color: #2a2a2a;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 50px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 38px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #3a3a3a;
}

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

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-content-floating {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-image-overlap {
        margin-top: 0;
        width: 100%;
    }

    .service-card {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px;
    }

    .card-offset-left,
    .card-offset-right,
    .card-offset-center {
        margin-left: 20px;
        margin-right: 20px;
    }

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

    .nav-asymmetric {
        padding: 20px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .section-title-offset {
        margin-left: 20px;
        font-size: 32px;
    }

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

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