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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-floating {
    position: fixed;
    top: 50px;
    left: 60px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.hero-asymmetric {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 80px;
    width: 62%;
    height: 75%;
    overflow: hidden;
}

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

.hero-text-overlap {
    position: relative;
    z-index: 10;
    margin-left: 180px;
    max-width: 580px;
    padding: 60px 50px;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-text-overlap h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.intro-offset {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.intro-content-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #555;
}

.intro-image-float {
    flex: 0 0 480px;
    position: relative;
    top: -60px;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.services-staggered {
    padding: 120px 80px;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 70px;
    margin-left: 120px;
    color: #2c3e50;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.service-card.offset-top {
    margin-left: 140px;
}

.service-card.offset-bottom {
    margin-left: 80px;
}

.service-image {
    flex: 0 0 420px;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-info {
    flex: 1;
    padding: 40px 50px 40px 0;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.btn-select-service {
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-diagonal {
    padding: 150px 80px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 180px;
    background-color: white;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-row label {
    font-size: 14px;
    font-weight: 600;
    color: #34495e;
}

.form-row input,
.form-row textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.service-display {
    padding: 14px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 15px;
    color: #666;
}

.service-display.selected {
    background-color: #e3f2fd;
    border-color: #3498db;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

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

.trust-section-overlap {
    padding: 100px 80px;
    background-color: #2c3e50;
    color: white;
}

.trust-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: white;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ecf0f1;
    line-height: 1.8;
}

.trust-image-inset {
    flex: 0 0 450px;
    position: relative;
    top: -40px;
}

.trust-image-inset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 8px solid white;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 80px 80px 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.thanks-page {
    display: none;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-page.active {
    display: flex;
}

.thanks-content {
    max-width: 700px;
    background-color: white;
    padding: 70px 60px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.thanks-service-info p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 36px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .nav-floating {
        left: 30px;
        top: 30px;
    }

    .hero-text-overlap {
        margin-left: 80px;
        max-width: 500px;
    }

    .hero-text-overlap h1 {
        font-size: 48px;
    }

    .intro-content-irregular,
    .trust-content {
        flex-direction: column;
    }

    .intro-image-float,
    .trust-image-inset {
        flex: 1;
        width: 100%;
        top: 0;
    }

    .service-card.offset-top,
    .service-card.offset-bottom {
        margin-left: 0;
    }

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

    .section-title-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: row;
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-asymmetric {
        height: auto;
        flex-direction: column;
    }

    .hero-image-offset {
        position: static;
        width: 100%;
        height: 300px;
    }

    .hero-text-overlap {
        margin: 0;
        max-width: 100%;
    }

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

    .intro-offset,
    .services-staggered,
    .form-section-diagonal,
    .trust-section-overlap,
    .footer-asymmetric {
        padding: 60px 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .service-info {
        padding: 30px;
    }

    .form-container-offset {
        padding: 40px 30px;
    }

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

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