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

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 5%;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f8f9fa;
}

.hero-content-offset {
    flex: 1 1 450px;
    padding-right: 60px;
    margin-top: -40px;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.hero-visual-offset {
    flex: 1 1 500px;
    margin-left: 40px;
    margin-top: 60px;
    background-color: #e8ecef;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-staggered {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-block-wide {
    flex: 2 1 400px;
    padding-top: 40px;
}

.intro-block-wide h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-block-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-block-narrow {
    flex: 1 1 350px;
    margin-top: -50px;
    background-color: #f0f4f7;
}

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

.services-asymmetric {
    padding: 80px 5% 120px 5%;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 20px;
    color: #666;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 3%;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 30px;
}

.card-offset-4 {
    margin-top: 90px;
}

.card-offset-5 {
    margin-top: 15px;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    padding: 0 25px;
    margin-bottom: 20px;
}

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

.service-card .btn-select-service:hover {
    background-color: #1a252f;
}

.form-section-offset {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    background-color: #f8f9fa;
    align-items: center;
    flex-wrap: wrap;
}

.form-container-irregular {
    flex: 1 1 500px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-left: 5%;
}

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

.form-container-irregular p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-visual-offset {
    flex: 1 1 400px;
    margin-top: -70px;
    background-color: #e8ecef;
}

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

.trust-block-irregular {
    padding: 80px 10% 80px 15%;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 800px;
}

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

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col-offset-1 {
    margin-top: 0;
}

.footer-col-offset-2 {
    margin-top: 30px;
}

.footer-col-offset-3 {
    margin-top: 15px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bbb;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 20px;
}

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

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

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

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

.cookie-content p {
    flex: 1 1 500px;
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero-offset {
    padding: 100px 5% 60px 10%;
    background-color: #f8f9fa;
}

.hero-text-irregular {
    max-width: 700px;
}

.hero-text-irregular h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-irregular p {
    font-size: 20px;
    color: #666;
}

.about-content-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-block-main {
    flex: 2 1 500px;
}

.about-block-main h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-block-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-visual-offset {
    flex: 1 1 350px;
    margin-top: 50px;
    background-color: #e8ecef;
}

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

.mission-irregular {
    padding: 80px 10% 80px 5%;
    background-color: #3498db;
    color: #ffffff;
}

.mission-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.mission-content-offset h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.mission-content-offset p {
    font-size: 19px;
    line-height: 1.8;
}

.values-staggered {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.values-staggered h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 5%;
}

.value-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    margin-top: 0;
}

.value-offset-2 {
    margin-top: 40px;
}

.value-offset-3 {
    margin-top: 20px;
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.approach-block-offset {
    display: flex;
    padding: 80px 5%;
    gap: 70px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-visual {
    flex: 1 1 400px;
    margin-top: -40px;
    background-color: #e8ecef;
}

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

.approach-text {
    flex: 1 1 500px;
}

.approach-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.cta-offset-block {
    padding: 100px 5%;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-offset-block h2 {
    font-size: 42px;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.services-detailed-asymmetric {
    padding: 60px 5%;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    flex-wrap: wrap;
}

.card-layout-1 {
    flex-direction: row;
}

.card-layout-2 {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1 1 450px;
    background-color: #e8ecef;
}

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

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.price-box {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.booking-info-offset {
    padding: 80px 10%;
    background-color: #f8f9fa;
    text-align: center;
}

.booking-info-offset h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.steps-irregular {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-block {
    flex: 1 1 250px;
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-block p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-offset {
    flex: 1 1 450px;
    margin-left: 5%;
}

.contact-info-offset h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-visual-offset {
    flex: 1 1 400px;
    margin-top: 50px;
    background-color: #e8ecef;
}

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

.location-info-irregular {
    padding: 60px 10% 60px 15%;
    background-color: #f8f9fa;
}

.location-info-irregular h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.location-info-irregular p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    max-width: 800px;
}

.faq-offset-section {
    padding: 80px 10%;
}

.faq-offset-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-item {
    padding-left: 40px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.thanks-section-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    min-height: 70vh;
    align-items: center;
    flex-wrap: wrap;
}

.thanks-content-offset {
    flex: 1 1 550px;
}

.thanks-content-offset h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content-offset > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-info-block {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.thanks-info-block h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.thanks-info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.thanks-service-info {
    margin-bottom: 35px;
    padding: 20px;
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.thanks-service-info p {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}

.thanks-visual-offset {
    flex: 1 1 400px;
    margin-top: -50px;
    background-color: #e8ecef;
}

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

.legal-page-content {
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.legal-page-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-page-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page-content a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        gap: 20px;
    }

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

    .hero-content-offset p {
        font-size: 18px;
    }

    .hero-asymmetric,
    .intro-staggered,
    .form-section-offset,
    .about-content-asymmetric,
    .approach-block-offset,
    .contact-layout-asymmetric,
    .thanks-section-asymmetric {
        flex-direction: column;
    }

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

    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-top: 0;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}