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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #e74c3c;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.btn-secondary:hover {
    background-color: #34495e;
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 50px;
    padding: 12px 30px;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    gap: 20px;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #e74c3c;
}

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

.hero-content-offset {
    width: 50%;
    padding: 200px 80px 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
    position: relative;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-visual-block {
    width: 50%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.trust-offset {
    padding: 120px 80px;
    background-color: #ffffff;
}

.trust-numbers {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.number-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.number-card.shifted {
    transform: translateY(40px);
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    color: #e74c3c;
    display: block;
    margin-bottom: 15px;
}

.number-card p {
    font-size: 16px;
    color: #7f8c8d;
}

.problem-block-irregular {
    padding: 100px 0;
    background-color: #2c3e50;
}

.overlap-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.text-layer {
    width: 55%;
    padding: 60px 80px;
    background-color: #34495e;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.text-layer h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    font-size: 18px;
    line-height: 1.8;
}

.problem-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
    font-weight: 700;
}

.image-layer {
    width: 50%;
    height: 500px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.solution-stacked {
    padding: 120px 80px;
    background-color: #ecf0f1;
}

.solution-intro {
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.solution-intro h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.solution-intro p {
    font-size: 20px;
    color: #34495e;
}

.method-cards-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    padding: 50px;
    background-color: #ffffff;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.method-card.card-left {
    width: 70%;
    align-self: flex-start;
}

.method-card.card-right {
    width: 70%;
    align-self: flex-end;
}

.method-card.card-center {
    width: 80%;
    align-self: center;
}

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

.method-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

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

.services-header-offset {
    max-width: 700px;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 19px;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ecf0f1;
    overflow: hidden;
}

.service-box.box-offset-1 {
    margin-left: 0;
}

.service-box.box-offset-2 {
    margin-left: 100px;
    flex-direction: row-reverse;
}

.service-box.box-offset-3 {
    margin-left: 50px;
}

.service-box.box-offset-4 {
    margin-left: 150px;
    flex-direction: row-reverse;
}

.service-box.box-offset-5 {
    margin-left: 20px;
}

.service-box.box-offset-6 {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-visual {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.service-details {
    padding: 40px;
    flex: 1;
}

.service-details h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #34495e;
}

.price-tag {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 25px;
}

.select-service {
    padding: 15px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section-offset {
    padding: 120px 80px;
    background-color: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin-left: 150px;
    padding: 60px;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

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

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

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

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

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

.btn-submit {
    padding: 18px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.2s;
}

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

.testimonials-irregular {
    padding: 120px 80px;
    background-color: #ecf0f1;
}

.testimonials-irregular h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card.card-pos-1 {
    width: 75%;
    margin-left: 0;
}

.testimonial-card.card-pos-2 {
    width: 80%;
    margin-left: auto;
}

.testimonial-card.card-pos-3 {
    width: 70%;
    margin-left: 100px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 80px 30px 80px;
}

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

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e74c3c;
}

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

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

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

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

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

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

.disclaimer {
    padding: 30px;
    background-color: #34495e;
    margin-bottom: 40px;
    border-left: 4px solid #e74c3c;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #ecf0f1;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-selected {
    padding: 20px;
    background-color: #ecf0f1;
    margin: 30px 0;
    border-left: 4px solid #e74c3c;
}

.service-selected strong {
    color: #e74c3c;
}

.btn-home {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #c0392b;
}

.legal-page {
    padding: 150px 80px 80px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

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

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

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

.contact-page {
    padding: 150px 80px 80px 80px;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #7f8c8d;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.about-hero {
    padding: 180px 80px 100px 80px;
    background-color: #2c3e50;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
    max-width: 800px;
}

.about-hero p {
    font-size: 22px;
    line-height: 1.7;
    max-width: 700px;
}

.about-content {
    padding: 100px 80px;
}

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

.content-block h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ecf0f1;
    border-top: 5px solid #e74c3c;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.services-list-page {
    padding: 150px 80px 100px 80px;
}

.services-list-page h1 {
    font-size: 56px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.services-intro p {
    font-size: 20px;
    line-height: 1.7;
    color: #7f8c8d;
}

.service-item {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 50px;
    background-color: #ffffff;
    border-left: 6px solid #e74c3c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

.service-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

@media (max-width: 1024px) {
    .floating-nav {
        width: 90%;
        padding: 10px 20px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 150px 40px 80px 40px;
    }

    .hero-visual-block {
        width: 100%;
        position: relative;
        height: 400px;
    }

    .trust-offset {
        padding: 80px 40px;
    }

    .overlap-container {
        flex-direction: column;
    }

    .text-layer {
        width: 100%;
        padding: 40px;
    }

    .image-layer {
        width: 100%;
        position: relative;
        transform: none;
    }

    .solution-stacked {
        padding: 80px 40px;
    }

    .method-card.card-left,
    .method-card.card-right,
    .method-card.card-center {
        width: 100%;
    }

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

    .service-box {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-visual {
        width: 100%;
    }

    .form-section-offset {
        padding: 80px 40px;
    }

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

    .testimonials-irregular {
        padding: 80px 40px;
    }

    .testimonial-card.card-pos-1,
    .testimonial-card.card-pos-2,
    .testimonial-card.card-pos-3 {
        width: 100%;
        margin-left: 0;
    }

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

    .legal-page {
        padding: 120px 40px 60px 40px;
    }

    .contact-page {
        padding: 120px 40px 60px 40px;
    }

    .about-hero {
        padding: 140px 40px 80px 40px;
    }

    .about-content {
        padding: 80px 40px;
    }

    .services-list-page {
        padding: 120px 40px 80px 40px;
    }
}

@media (max-width: 640px) {
    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 17px;
    }

    .text-layer h2 {
        font-size: 32px;
    }

    .solution-intro h2 {
        font-size: 36px;
    }

    .services-header-offset h2 {
        font-size: 36px;
    }

    .form-container h2 {
        font-size: 32px;
    }

    .testimonials-irregular h2 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .contact-info-section h1 {
        font-size: 36px;
    }

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

    .services-list-page h1 {
        font-size: 40px;
    }
}