* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #0066cc;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    z-index: 2;
    padding-right: 60px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 36px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.hero-image-float {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 420px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #d0d8e0;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
}

.intro-diagonal {
    padding: 100px 5%;
    background-color: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 80px;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    margin-top: -40px;
    margin-bottom: -40px;
}

.diagonal-block {
    flex: 1.5;
}

.diagonal-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.diagonal-block p {
    font-size: 18px;
    line-height: 1.7;
}

.diagonal-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.4;
}

.services-offset {
    padding: 120px 5% 100px;
    background-color: #fafbfc;
}

.services-intro-side {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-intro-side h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro-side p {
    font-size: 18px;
    color: #555;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.card-large {
    flex: 1 1 calc(60% - 12px);
}

.card-medium {
    flex: 1 1 calc(50% - 12px);
}

.card-small {
    flex: 1 1 calc(40% - 12px);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #e0e7ee;
}

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #f0f4f8;
    color: #0066cc;
    border: 2px solid #0066cc;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #0066cc;
    color: #ffffff;
}

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

.trust-image {
    flex: 1;
    position: relative;
    transform: translateX(-30px);
}

.trust-image img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    background-color: #d5dde5;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.form-section-embedded {
    padding: 100px 5%;
    background: linear-gradient(135deg, #e8eef5 0%, #f5f7fa 100%);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 36px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fff8e6;
    border-top: 2px solid #ffd966;
    border-bottom: 2px solid #ffd966;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #0066cc;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-image-float {
        position: relative;
        right: 0;
        transform: none;
        margin-top: 40px;
    }

    .intro-diagonal {
        flex-direction: column;
        gap: 40px;
    }

    .trust-block-overlap {
        flex-direction: column;
    }

    .trust-image {
        transform: none;
    }

    .trust-content {
        padding-left: 0;
    }

    .card-large, .card-medium, .card-small {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .diagonal-block h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }

    .services-intro-side h2 {
        font-size: 32px;
    }

    .form-container-asymmetric {
        padding: 30px 20px;
        transform: none;
    }
}