* {
    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-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 580px;
    padding-right: 40px;
    margin-left: 8%;
}

.hero-text-block h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
    margin-right: -5%;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-diagonal {
    padding: 80px 5%;
    background-color: #ffffff;
    position: relative;
}

.intro-diagonal::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    transform: skewY(-2deg);
}

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

.content-narrow h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-narrow p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

.visual-accent {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    margin: 40px auto 0;
    border-radius: 2px;
}

.services-grid-irregular {
    padding: 100px 5%;
    background-color: #f8fafc;
}

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

.section-header-offset h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header-offset p {
    font-size: 18px;
    color: #64748b;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-large {
    width: 70%;
    margin-left: 5%;
}

.card-offset-right {
    width: 65%;
    margin-left: auto;
    margin-right: 8%;
}

.card-small {
    width: 55%;
    margin-left: 15%;
}

.card-wide {
    width: 75%;
    margin-left: auto;
    margin-right: 5%;
}

.card-offset-left {
    width: 60%;
    margin-left: 10%;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 16px;
}

.select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f1f5f9;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.select-service:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.benefits-overlap {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
}

.benefit-block {
    flex: 1;
    padding: 40px;
}

.block-left {
    margin-right: -60px;
    z-index: 2;
    background-color: #f0f9ff;
    border-radius: 12px;
}

.block-right {
    margin-left: -60px;
    z-index: 2;
    background-color: #f0fdf4;
    border-radius: 12px;
}

.benefit-visual {
    flex: 1;
    z-index: 1;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.benefit-block h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-block p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

.form-section-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.form-section-diagonal::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    transform: skewY(-1.5deg);
}

.form-container-offset {
    max-width: 680px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-markers {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background-color: #1e293b;
    color: #ffffff;
}

.marker-item {
    text-align: center;
}

.marker-item strong {
    display: block;
    font-size: 48px;
    color: #3b82f6;
    font-weight: 800;
    margin-bottom: 8px;
}

.marker-item span {
    font-size: 16px;
    color: #cbd5e1;
}

.footer-stacked {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 5% 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-disclaimer {
    padding: 24px;
    background-color: #1e293b;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

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

.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: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3b82f6;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1d4ed8;
}

.cookie-btn.reject {
    background-color: #475569;
    color: #ffffff;
}

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

.page-header-offset {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin-left: 10%;
}

.page-header-offset h1 {
    font-size: 52px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header-offset p {
    font-size: 20px;
    color: #475569;
}

.about-story {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.values-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.values-diagonal h2 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.approach-overlap {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.approach-content h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    padding: 28px;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.step strong {
    display: block;
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.team-section {
    padding: 80px 5%;
    background-color: #f8fafc;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-section > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.expertise {
    padding: 12px 24px;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 24px;
    font-weight: 600;
    font-size: 15px;
}

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

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 600;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.service-detail-content li {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.price-detail {
    font-size: 30px;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-services {
    padding: 80px 5%;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-services p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.contact-layout {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

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

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.contact-commitment {
    padding: 80px 5%;
    background-color: #f8fafc;
}

.contact-commitment h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.commitment-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.commitment-item {
    flex: 1;
    text-align: center;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.commitment-item strong {
    display: block;
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 700;
}

.commitment-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 5%;
    background-color: #ffffff;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 24px;
    background-color: #dbeafe;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-service-info p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 8px;
}

.thanks-service-info strong {
    font-size: 20px;
    color: #1e293b;
    font-weight: 700;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-next-steps li {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.legal-page {
    padding: 60px 5% 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 44px;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 800;
}

.legal-content {
    max-width: 900px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #334155;
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content strong {
    color: #1e293b;
    font-weight: 600;
}

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

    .hero-text-block {
        margin-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-image-offset {
        margin-top: 30px;
        margin-right: 0;
    }

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

    .services-grid-irregular .service-card {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .section-header-offset {
        margin-left: 0;
    }

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

    .block-left,
    .block-right {
        margin: 0;
        width: 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-story,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 24px;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
    }

    .commitment-grid {
        flex-direction: column;
    }

    .page-header-offset {
        margin-left: 0;
    }

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