* {
    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: #1a1a1a;
    background: #ffffff;
}

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a.nav-active {
    color: #e74c3c;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
    max-width: 550px;
    transform: translateY(-30px);
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231,76,60,0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(40px) translateX(20px);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #e9ecef;
}

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

.intro-diagonal {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #ffffff;
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: #f8f9fa;
    transform: skewX(-6deg);
    z-index: 0;
}

.intro-text-block {
    flex: 1.2;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
    transform: translateY(-20px);
}

.stat-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    border-left: 5px solid #e74c3c;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.services-irregular {
    padding: 100px 60px;
    background: #f8f9fa;
}

.services-irregular h2 {
    font-size: 46px;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: left;
    font-weight: 700;
    padding-left: 20px;
}

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    position: relative;
}

.service-card.large-card {
    flex: 1 1 calc(50% - 15px);
}

.service-card.offset-right {
    transform: translateY(30px);
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 24px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #e74c3c;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.contact-form-section {
    display: flex;
    min-height: 700px;
    background: #ffffff;
}

.form-container-offset {
    flex: 1;
    padding: 100px 80px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-container-offset > p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
}

.booking-form {
    max-width: 520px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.selected-service-display {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #e74c3c;
    display: none;
    font-weight: 600;
    color: #2c3e50;
}

.selected-service-display.active {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.form-image-diagonal {
    flex: 0.8;
    position: relative;
    overflow: hidden;
    background-color: #dee2e6;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

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

.trust-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.trust-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-irregular h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.features-staggered {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.feature-block {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-block.offset-down {
    transform: translateY(40px);
}

.feature-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.feature-block p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 25px 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #6c757d;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 60px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c0392b;
}

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

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

.cookie-learn {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-learn:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
        transform: none;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-image-right {
        transform: none;
        max-width: 600px;
    }

    .intro-diagonal {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-stats-offset {
        transform: none;
        width: 100%;
    }

    .services-asymmetric-grid {
        gap: 25px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-card.offset-right {
        transform: none;
    }

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

    .form-image-diagonal {
        min-height: 300px;
        clip-path: none;
    }

    .features-staggered {
        flex-direction: column;
        gap: 30px;
    }

    .feature-block.offset-down {
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content-left h1 {
        font-size: 38px;
    }

    .services-irregular {
        padding: 60px 30px;
    }

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

    .trust-section {
        padding: 60px 30px;
    }

    .footer-asymmetric {
        padding: 40px 30px 20px;
    }
}