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

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

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

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    padding: 80px 60px 60px 80px;
    background-color: #f8f9fa;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    z-index: 2;
    max-width: 550px;
    margin-right: -100px;
}

.hero-text-block {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.hero-image-overlap {
    flex: 1.2;
    position: relative;
    margin-top: 60px;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.intro-offset {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: flex-start;
    background-color: white;
}

.intro-narrow {
    flex: 1.3;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image-side {
    flex: 1;
    margin-top: 80px;
    background-color: #e8f4f8;
}

.intro-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid-asymmetric {
    padding: 120px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #555;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    width: calc(58% - 15px);
}

.card-small {
    width: calc(38% - 15px);
    margin-top: 60px;
}

.card-offset {
    width: calc(42% - 15px);
    margin-top: -40px;
}

.card-wide {
    width: calc(54% - 15px);
}

.card-elevated {
    width: calc(48% - 15px);
    margin-top: 40px;
}

.card-compact {
    width: calc(48% - 15px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8f4f8;
}

.service-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 18px;
    color: #666;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 18px;
}

.select-service {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #34495e;
}

.form-section-diagonal {
    padding: 100px 80px 100px 140px;
    background-color: #2c3e50;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: 80px;
}

.form-container-offset {
    max-width: 650px;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    margin-left: 80px;
}

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

.form-container-offset p {
    margin-bottom: 32px;
    color: #555;
}

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

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

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

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

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

.btn-submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-block {
    padding: 100px 80px;
    background-color: white;
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
}

.disclaimer-section {
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: white;
    padding: 60px 80px 30px;
}

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

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.footer-block p,
.footer-block a {
    color: #b0b8c1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 24px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

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

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

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

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

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

.thanks-message {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.thanks-content .service-selected {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-content-offset {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

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

    .intro-image-side {
        margin-top: 40px;
    }

    .services-grid-asymmetric {
        padding: 80px 40px;
    }

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

    .service-card {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .form-section-diagonal {
        padding: 80px 40px;
        clip-path: none;
    }

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

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

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

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