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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header-asymmetric {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

.logo-block {
    transform: translateX(-15px);
}

.brand {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    gap: 35px;
    margin-left: auto;
}

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

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

.nav-offset a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-offset a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fafbfc;
}

.hero-content-offset {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    max-width: 560px;
    transform: translateX(40px);
}

.hero-headline {
    font-size: 48px;
    line-height: 1.2;
    color: #1e3a5f;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-image-overlay {
    flex: 1;
    position: relative;
    transform: translateX(-30px) translateY(20px);
}

.hero-image-overlay img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

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

.cta-primary:hover {
    background-color: #1e5bb8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 123, 229, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c7be5;
    text-decoration: none;
    border: 2px solid #2c7be5;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    transform: translateX(60px);
}

.intro-lead {
    font-size: 21px;
    line-height: 1.7;
    color: #34495e;
}

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

.intro-wide-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-asymmetric {
    padding: 100px 0;
    background-color: #f8f9fb;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    transform: translateX(120px);
}

.section-header-offset h3 {
    font-size: 42px;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 600px;
}

.services-irregular-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 20px);
    min-width: 450px;
}

.card-offset {
    flex: 1 1 calc(38% - 20px);
    min-width: 350px;
    transform: translateY(60px);
}

.card-small {
    flex: 1 1 calc(45% - 20px);
    min-width: 400px;
    transform: translateX(-40px);
}

.card-medium {
    flex: 1 1 calc(53% - 20px);
    min-width: 450px;
    transform: translateY(-30px);
}

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

.service-card h4 {
    font-size: 22px;
    color: #1e3a5f;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price-tag {
    margin: 20px 24px 24px;
    font-size: 24px;
    font-weight: 700;
    color: #2c7be5;
}

.cta-inline {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
    text-align: center;
}

.feature-split {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.feature-text-block {
    flex: 1;
    max-width: 550px;
}

.feature-text-block h3 {
    font-size: 36px;
    color: #1e3a5f;
    margin-bottom: 24px;
}

.feature-text-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.feature-visual {
    flex: 1;
    transform: translateX(40px) rotate(-2deg);
}

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.form-section-asymmetric {
    padding: 100px 0;
    background: linear-gradient(120deg, #f0f4f8 0%, #e8eef5 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 20%;
    padding: 60px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(-80px);
}

.form-container-offset h3 {
    font-size: 32px;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.form-intro {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c7be5;
    box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.1);
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2c7be5;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e5bb8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 123, 229, 0.3);
}

.trust-block {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.trust-content h3 {
    font-size: 38px;
    color: #1e3a5f;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-offset {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    max-width: 500px;
    padding: 36px;
    background-color: #f8f9fb;
    border-radius: 8px;
    border-left: 4px solid #2c7be5;
}

.testimonial:first-child {
    transform: translateY(-20px);
}

.testimonial:last-child {
    transform: translateY(20px);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #5a6c7d;
    font-weight: 600;
}

.footer {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

.footer-bottom p {
    font-size: 12px;
    color: #8a9aab;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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;
    color: #2c3e50;
    line-height: 1.6;
}

.cookie-content a {
    color: #2c7be5;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2c7be5;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h2 {
    font-size: 44px;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #5a6c7d;
}

.content-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.content-block-left {
    flex: 1;
    max-width: 600px;
}

.content-block-left h3 {
    font-size: 34px;
    color: #1e3a5f;
    margin-bottom: 24px;
}

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

.content-image-right {
    flex: 1;
    transform: translateY(60px);
}

.content-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fb;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item:nth-child(odd) {
    transform: translateX(30px);
}

.value-item:nth-child(even) {
    transform: translateX(-30px) translateY(20px);
}

.value-item h4 {
    font-size: 24px;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.approach-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.approach-text h3 {
    font-size: 38px;
    color: #1e3a5f;
    margin-bottom: 32px;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 24px;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.offset-left {
    transform: translateX(60px);
}

.offset-right {
    transform: translateX(-60px);
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
}

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

.service-detail-content h3 {
    font-size: 32px;
    color: #1e3a5f;
    margin-bottom: 20px;
}

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

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2c7be5;
    margin: 24px 0;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7be5;
    font-weight: 700;
}

.cta-section-centered {
    padding: 80px 0;
    background-color: #f8f9fb;
    text-align: center;
}

.cta-section-centered h3 {
    font-size: 36px;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.cta-section-centered p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-block-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact-primary {
    flex: 1;
    transform: translateX(40px);
}

.contact-primary h3 {
    font-size: 36px;
    color: #1e3a5f;
    margin-bottom: 40px;
}

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

.contact-detail h4 {
    font-size: 18px;
    color: #2c7be5;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.contact-secondary {
    flex: 1;
    transform: translateY(-40px);
}

.contact-secondary img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.additional-info-section {
    padding: 80px 0;
    background-color: #f8f9fb;
}

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

.info-block h3 {
    font-size: 28px;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fb;
}

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

.thanks-content h2 {
    font-size: 42px;
    color: #1e3a5f;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 32px;
}

.service-confirmation {
    font-size: 17px;
    color: #2c7be5;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 42px;
    color: #1e3a5f;
    margin-bottom: 48px;
}

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

.legal-content h4 {
    font-size: 22px;
    color: #34495e;
    margin-top: 28px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin: 20px 0 20px 24px;
}

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

.legal-content a {
    color: #2c7be5;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content-offset,
    .intro-offset,
    .feature-split,
    .service-detail-block,
    .contact-block-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block,
    .intro-narrow,
    .contact-primary {
        transform: translateX(0);
    }

    .hero-image-overlay,
    .intro-wide-image,
    .feature-visual,
    .contact-secondary {
        transform: translateX(0) translateY(0) rotate(0);
    }

    .form-container-offset {
        margin: 0 auto;
        transform: translateX(0);
        padding: 40px;
    }

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

    .card-large,
    .card-offset,
    .card-small,
    .card-medium {
        transform: translateX(0) translateY(0);
        min-width: auto;
    }

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

    .testimonial:first-child,
    .testimonial:last-child {
        transform: translateY(0);
    }

    .value-item:nth-child(odd),
    .value-item:nth-child(even) {
        transform: translateX(0) translateY(0);
    }

    .section-header-offset {
        transform: translateX(0);
    }

    .service-detail-block.offset-left,
    .service-detail-block.offset-right {
        transform: translateX(0);
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}