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

.ad-disclosure {
    background-color: #ecf0f1;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
    border-bottom: 1px solid #bdc3c7;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    position: relative;
}

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

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

.nav-right a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding-right: 80px;
    max-width: 550px;
}

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

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: 40px;
    background-color: #e0e0e0;
}

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

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

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

.intro-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 70px;
    align-items: flex-start;
}

.intro-block-offset {
    flex: 1.2;
    padding-top: 40px;
    background-color: #ecf0f1;
}

.intro-block-offset {
    padding: 50px;
    background-color: #ecf0f1;
}

.intro-block-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

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

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

.services-grid-asymmetric {
    padding: 90px 40px;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 80px;
}

.section-header-offset h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #f8f9fa;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card.large-offset {
    flex: 0 0 calc(50% - 15px);
    margin-left: auto;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 20px;
    color: #546e7a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 25px 25px;
}

.trust-block-floating {
    padding: 80px 40px;
    background-color: #34495e;
    margin: 0 40px;
}

.trust-content {
    max-width: 700px;
    margin-left: auto;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.05);
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #ecf0f1;
}

.testimonials-asymmetric {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonials-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

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

.testimonial {
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
}

.testimonial.left {
    max-width: 70%;
    margin-right: auto;
}

.testimonial.right-offset {
    max-width: 65%;
    margin-left: auto;
}

.testimonial.center {
    max-width: 75%;
    margin: 0 auto;
}

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

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

.form-section-offset {
    padding: 90px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin-left: 100px;
    padding: 50px;
    background-color: #f8f9fa;
}

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    background-color: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 50px 40px;
    background-color: #ecf0f1;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

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

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

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 600;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    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;
    color: #ecf0f1;
}

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

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

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

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

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

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

.about-hero-offset {
    padding: 100px 40px 80px;
    background-color: #f8f9fa;
}

.about-text-block {
    max-width: 700px;
    margin-left: 80px;
}

.about-text-block h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.about-text-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #546e7a;
}

.story-asymmetric {
    display: flex;
    padding: 90px 40px;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background-color: #d5d8dc;
}

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

.story-content-right {
    flex: 1;
    padding-left: 40px;
}

.story-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.story-content-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.values-floating {
    padding: 90px 40px;
    background-color: #ecf0f1;
}

.values-floating h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
}

.value-item.offset-left {
    margin-right: auto;
    max-width: 45%;
}

.value-item.offset-right {
    margin-left: auto;
    max-width: 45%;
}

.value-item.center {
    flex: 0 0 60%;
    margin: 0 auto;
}

.value-item.offset-bottom {
    flex: 0 0 50%;
    margin-left: 10%;
}

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

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.team-asymmetric {
    padding: 90px 40px;
    background-color: #ffffff;
}

.team-header-offset {
    max-width: 600px;
    margin-bottom: 50px;
    margin-left: 60px;
}

.team-header-offset h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

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

.team-visual {
    background-color: #d5d8dc;
}

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

.approach-section {
    padding: 90px 40px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.approach-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: #ecf0f1;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.cta-about {
    padding: 80px 40px;
    background-color: #34495e;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #34495e;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.services-hero {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
}

.services-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.services-detail-asymmetric {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-detail-block.left-offset {
    margin-left: 0;
    margin-right: 10%;
}

.service-detail-block.right-offset {
    margin-right: 0;
    margin-left: 10%;
}

.service-detail-block.center {
    justify-content: center;
    max-width: 900px;
    margin: 80px auto;
}

.service-detail-image {
    flex: 1;
    background-color: #d5d8dc;
}

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

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

.service-detail-content-full {
    max-width: 700px;
}

.service-detail-content h2,
.service-detail-content-full h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p,
.service-detail-content-full p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.service-detail-content ul,
.service-detail-content-full ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content li,
.service-detail-content-full li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #546e7a;
}

.service-price-box {
    padding: 20px;
    background-color: #f8f9fa;
    display: inline-block;
}

.price-label {
    font-size: 15px;
    color: #7f8c8d;
    margin-right: 10px;
}

.price-value {
    font-size: 30px;
    font-weight: 700;
    color: #e74c3c;
}

.additional-services {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.additional-services h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.additional-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: #ffffff;
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.additional-item p {
    font-size: 16px;
    color: #7f8c8d;
}

.services-cta-offset {
    padding: 80px 40px;
    background-color: #34495e;
    text-align: center;
}

.services-cta-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.services-cta-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.contact-hero {
    padding: 100px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 800;
}

.contact-hero p {
    font-size: 20px;
    color: #546e7a;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 90px 40px;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 1;
    padding-left: 60px;
}

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

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.contact-visual {
    flex: 1;
    background-color: #d5d8dc;
}

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

.directions-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
    max-width: 900px;
    margin: 0 auto;
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.directions-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.contact-cta {
    padding: 80px 40px;
    background-color: #34495e;
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #546e7a;
}

.thanks-info {
    padding: 30px;
    background-color: #f8f9fa;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next {
    margin-bottom: 50px;
    text-align: left;
    padding: 40px;
    background-color: #ecf0f1;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next ol {
    padding-left: 20px;
}

.thanks-next li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #546e7a;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 800;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #546e7a;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content em {
    display: block;
    margin-top: 40px;
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-right {
        margin-left: 0;
    }

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

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

    .service-card,
    .service-card.large,
    .service-card.large-offset {
        flex: 0 0 100%;
    }

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

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

    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .values-layout .value-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }
}