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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 2px solid #4a6fa5;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background: #4a6fa5;
    color: white;
}

.btn-accept:hover {
    background: #3a5a8a;
}

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

.btn-reject:hover {
    background: #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #4a6fa5;
}

.nav-links {
    display: flex;
    gap: 25px;
}

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

.nav-links a:hover {
    color: #4a6fa5;
}

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

.hero-text-block {
    flex: 0 0 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a2332;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.cta-inline {
    display: inline-block;
    padding: 16px 36px;
    background: #4a6fa5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #3a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 111, 165, 0.3);
}

.hero-image-offset {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    z-index: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-overlap {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
    background: white;
}

.intro-card-left {
    flex: 0 0 55%;
    background: #f8fafc;
    padding: 60px;
    border-left: 6px solid #4a6fa5;
}

.intro-card-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.intro-card-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-visual-right {
    flex: 1;
    margin-top: -60px;
    background: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-stacked {
    padding: 80px 60px;
    background: #fafafa;
}

.services-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.services-header-centered h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a2332;
    font-weight: 700;
}

.services-header-centered p {
    font-size: 20px;
    color: #64748b;
}

.service-block-offset-right,
.service-block-offset-left {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.service-block-offset-right {
    margin-left: 0;
    margin-right: 80px;
}

.service-block-offset-left {
    margin-left: 80px;
    margin-right: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a6fa5;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 32px;
    background: #4a6fa5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #3a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 111, 165, 0.3);
}

.service-image {
    flex: 0 0 400px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-block-full-width {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.service-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.service-content-centered h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.service-content-centered p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    margin-bottom: 25px;
}

.service-content-centered .service-price {
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-content-centered .btn-service {
    background: white;
    color: #667eea;
}

.service-content-centered .btn-service:hover {
    background: #f7fafc;
    color: #5a67d8;
}

.trust-block-irregular {
    display: flex;
    padding: 100px 60px;
    gap: 100px;
    align-items: center;
    background: white;
}

.trust-content-left {
    flex: 0 0 55%;
}

.trust-content-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a2332;
    font-weight: 700;
    line-height: 1.2;
}

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

.trust-visual-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-stat {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #4a6fa5;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #4a6fa5;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #64748b;
}

.form-section-diagonal {
    padding: 100px 60px;
    background: linear-gradient(165deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2332;
    font-weight: 700;
}

.form-container p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background: #4a6fa5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #3a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 111, 165, 0.3);
}

.btn-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.service-selection-notice {
    margin-top: 20px;
    padding: 15px;
    background: #fef3cd;
    border-left: 4px solid #ffc107;
    font-size: 14px;
    color: #856404;
    border-radius: 4px;
    display: none;
}

.service-selection-notice.visible {
    display: block;
}

.disclaimer-block {
    padding: 60px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.disclaimer-block p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

.footer-split {
    background: #1a2332;
    color: #cbd5e0;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 1;
}

.footer-about h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.6;
}

.footer-links,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

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

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

.content-page {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 0 30px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a2332;
    font-weight: 700;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.content-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-page ul,
.content-page ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-card .service-price {
    font-size: 26px;
    font-weight: 700;
    color: #4a6fa5;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 80px 60px;
    max-width: 800px;
    margin: 100px auto 60px;
}

.contact-info-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2332;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-container {
    max-width: 700px;
    margin: 150px auto 100px;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-container .cta-inline {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 40px 60px 40px;
    }

    .hero-text-block {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .intro-overlap {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .intro-card-left {
        flex: 1;
    }

    .service-block-offset-right,
    .service-block-offset-left {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        padding: 40px;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .trust-block-irregular {
        flex-direction: column;
        padding: 60px 40px;
        gap: 50px;
    }

    .trust-content-left {
        flex: 1;
    }

    .nav-floating {
        top: 20px;
        right: 20px;
        left: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 38px;
    }

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

    .services-stacked {
        padding: 60px 30px;
    }

    .form-section-diagonal {
        padding: 60px 30px;
    }

    .form-container {
        padding: 40px 30px;
    }
}