* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-content-overlay {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
    margin-top: 120px;
    background: white;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-content-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content-overlay p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

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

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

.intro-block {
    flex: 1;
    transform: translateY(-40px);
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.intro-visual {
    flex: 1;
    background-color: #bdc3c7;
}

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

.services-irregular {
    padding: 100px 40px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    margin-left: 15%;
    color: #2c3e50;
}

.service-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-large {
    flex: 1 1 calc(60% - 30px);
}

.card-medium {
    flex: 1 1 calc(50% - 30px);
}

.card-small {
    flex: 1 1 calc(40% - 30px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    color: #555;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

.benefits-overlapping {
    position: relative;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
    min-height: 500px;
}

.benefit-block {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    max-width: 450px;
}

.benefit-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-block p {
    color: #555;
    font-size: 1.05rem;
}

.block-1 {
    position: relative;
    z-index: 3;
}

.block-2 {
    position: absolute;
    right: 0;
    top: 120px;
    z-index: 2;
}

.benefit-visual {
    position: absolute;
    left: 25%;
    top: 250px;
    width: 50%;
    height: 350px;
    z-index: 1;
    background-color: #bdc3c7;
}

.benefit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 150px auto 100px;
    padding: 0 40px;
}

.form-container {
    flex: 1.2;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container > p {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background: #229954;
}

.form-visual {
    flex: 0.8;
    height: 500px;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-elements {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-item h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trust-item p {
    color: #7f8c8d;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 20px;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: white;
}

.disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.thanks-container {
    max-width: 700px;
    margin: 200px auto;
    padding: 60px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.thanks-container .selected-service {
    font-weight: 700;
    color: #2c3e50;
}

.thanks-container .cta-primary {
    margin-top: 30px;
}

.content-page {
    max-width: 900px;
    margin: 150px auto 80px;
    padding: 60px;
    background: white;
    border-radius: 8px;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

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

.content-page li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.contact-info {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 10px;
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-content-overlay h1 {
        font-size: 2.2rem;
    }

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

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

    .benefits-overlapping {
        display: flex;
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }

    .block-2 {
        position: relative;
        right: auto;
        top: auto;
    }

    .benefit-visual {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }

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

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

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

    .hero-image-offset {
        width: 100%;
        right: 0;
        opacity: 0.3;
    }

    .hero-content-overlay {
        margin-left: 5%;
        margin-right: 5%;
        padding: 40px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2rem;
    }

    .trust-elements {
        flex-direction: column;
        gap: 30px;
    }
}