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

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

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

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

.hero-content-offset {
    max-width: 550px;
    z-index: 2;
    margin-left: 8%;
    margin-top: -60px;
}

.hero-content-offset h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 12%;
    width: 52%;
    height: 75%;
    transform: rotate(2deg);
    background-color: #e8e4df;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.15);
}

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

.cta-primary:hover {
    background-color: #6d5a44;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

.intro-offset {
    padding: 120px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.intro-visual-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: #e8e4df;
}

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

.services-asymmetric {
    padding: 100px 40px 140px;
    background-color: #ffffff;
}

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

.service-cards-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 30px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    overflow: hidden;
    background-color: #fafafa;
}

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

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.service-card .price {
    display: block;
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
}

.service-card .btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card .btn-select:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.card-elevated {
    transform: translateY(-15px);
}

.card-offset-down {
    transform: translateY(25px);
}

.card-offset-up {
    transform: translateY(-20px);
}

.card-standard {
    transform: translateY(0);
}

.form-section-offset {
    padding: 100px 40px;
    background: linear-gradient(165deg, #8b7355 0%, #6d5a44 100%);
}

.form-container-irregular {
    max-width: 650px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 55px 50px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
}

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

.form-container-irregular > p {
    margin-bottom: 35px;
    color: #5a5a5a;
    font-size: 16px;
}

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

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

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

.form-group input {
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #8b7355;
}

.service-display {
    padding: 14px;
    background-color: #f5f1ed;
    border-left: 4px solid #8b7355;
    font-weight: 600;
    color: #2c3e50;
}

.btn-submit {
    padding: 16px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

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

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

.trust-diagonal {
    padding: 120px 40px;
    background-color: #f5f1ed;
    transform: skewY(-2deg);
    margin-top: 80px;
}

.trust-content {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-stagger {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonials-stagger blockquote {
    max-width: 320px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 5px solid #8b7355;
}

.testimonial-offset-1 {
    transform: translateY(-20px);
}

.testimonial-offset-2 {
    transform: translateY(15px);
}

.testimonial-offset-3 {
    transform: translateY(-10px);
}

.testimonials-stagger p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
    font-style: italic;
}

.testimonials-stagger cite {
    font-style: normal;
    font-weight: 600;
    color: #8b7355;
    font-size: 14px;
}

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

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

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

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #8b7355;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-block a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    cursor: pointer;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #8b7355;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8b7355;
    text-decoration: underline;
    cursor: pointer;
}

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

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

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6d5a44;
}

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

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

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

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5568;
}

.thanks-container .service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f1ed;
    border-left: 4px solid #8b7355;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.thanks-container .btn-home:hover {
    background-color: #6d5a44;
    transform: translateY(-2px);
}

.contact-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-block {
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #8b7355;
}

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 60px 30px;
    }

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

    .hero-content-offset h1 {
        font-size: 42px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 40px;
        transform: rotate(0);
    }

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

    .intro-block-left {
        padding-left: 0;
    }

    .intro-visual-right {
        margin-top: 0;
        width: 100%;
    }

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

    .form-container-irregular {
        margin-left: 0;
        padding: 40px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 15px 20px;
    }

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

    .hero-content-offset h1 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

    .service-cards-irregular {
        gap: 30px;
    }

    .testimonials-stagger {
        flex-direction: column;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        transform: translateY(0);
    }
}