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

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.header-asymmetric {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

.nav-offset a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.nav-offset a:hover {
    color: #2c5f7c;
}

.hero-offset {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-text-float {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-float h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f7c;
    line-height: 1.3;
}

.hero-text-float p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c5f7c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1e4a5f;
}

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

.intro-left {
    flex: 1;
}

.intro-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.intro-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.services-scattered {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c5f7c;
    padding-left: 20px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 12px;
    background-color: #2c5f7c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #1e4a5f;
}

.offset-1 { margin-top: 0; }
.offset-2 { margin-top: 40px; }
.offset-3 { margin-top: 20px; }
.offset-4 { margin-top: 60px; }
.offset-5 { margin-top: 10px; }
.offset-6 { margin-top: 50px; }

.inline-cta-block {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
}

.inline-cta-block h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.inline-cta-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-light {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #2c5f7c;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-light:hover {
    background-color: #f0f0f0;
}

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

.form-container {
    flex: 1;
    padding: 40px;
    background-color: #f9fbfc;
    border-radius: 8px;
}

.form-container h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c5f7c;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5f7c;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c5f7c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #1e4a5f;
}

.form-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.trust-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.trust-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.disclaimer-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: #2c5f7c;
    color: #fff;
    margin-top: 100px;
}

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

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

.footer-col p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-header-offset {
    max-width: 1400px;
    margin: 60px auto;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
}

.page-header-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.page-header-offset p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-text-block {
    max-width: 900px;
    margin-bottom: 60px;
}

.about-text-block h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.about-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.about-img-float {
    max-width: 700px;
    margin: 60px 0 60px auto;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.value-item p {
    font-size: 16px;
    color: #666;
}

.team-approach {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    border-radius: 8px;
}

.team-approach h3 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c5f7c;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2c5f7c;
    opacity: 0.3;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.step p {
    font-size: 15px;
    color: #666;
}

.cta-about-inline {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
}

.cta-about-inline h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.services-detail-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    border-radius: 8px;
}

.service-detail.offset-left {
    flex-direction: row;
}

.service-detail.offset-right {
    flex-direction: row-reverse;
}

.service-detail-img {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 25px;
}

.service-select-large {
    padding: 15px 35px;
    background-color: #2c5f7c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-select-large:hover {
    background-color: #1e4a5f;
}

.cta-services-bottom {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
}

.cta-services-bottom h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-services-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-layout-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c5f7c;
}

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

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background-color: #f9fbfc;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.thanks-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c5f7c;
}

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

.thanks-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.legal-page h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c5f7c;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f7c;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #fff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #2c5f7c;
}

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

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

    .nav-offset {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-text-float {
        position: static;
        transform: none;
        max-width: 100%;
    }

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

    .services-grid-asymmetric {
        flex-direction: column;
    }

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

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

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

    .about-values-grid {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.offset-left,
    .service-detail.offset-right {
        flex-direction: column;
    }

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

    .thanks-section {
        flex-direction: column;
    }

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