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

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

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

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 60px 60px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: 8%;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #0a0a0a;
}

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

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

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

.hero-visual-overlap {
    position: absolute;
    top: 15%;
    right: -5%;
    width: 50%;
    height: 70%;
    z-index: 1;
    background-color: #e8eef5;
}

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

.intro-irregular {
    display: flex;
    align-items: center;
    padding: 120px 60px;
    gap: 80px;
    background-color: #f8f9fa;
}

.intro-text-block {
    flex: 1;
    max-width: 580px;
    margin-left: 12%;
}

.intro-text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.intro-text-block p {
    font-size: 19px;
    color: #4a4a4a;
    line-height: 1.7;
}

.intro-stat-offset {
    position: relative;
    margin-top: -60px;
}

.stat-card {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    color: #0066cc;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    margin-top: 12px;
    text-align: center;
}

.services-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 70px;
    margin-left: 8%;
    color: #0a0a0a;
}

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

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

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

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

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

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 28px 12px 28px;
    color: #0a0a0a;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0 28px 20px 28px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 28px;
}

.btn-select-service {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 28px 28px 28px;
    transition: background-color 0.3s ease;
}

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

.form-section-overlap {
    position: relative;
    padding: 100px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
}

.form-container-offset {
    max-width: 650px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-container-offset h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.form-container-offset > p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 36px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    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;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

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

.trust-section-irregular {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #0a0a0a;
}

.trust-items {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.trust-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px 60px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.footer-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-block p {
    font-size: 15px;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-block a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #343a40;
    text-align: center;
}

.disclaimer p {
    font-size: 13px;
    color: #6c757d;
    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.1);
    padding: 30px;
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #0066cc;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: #e9ecef;
    color: #1a1a1a;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.thanks-content p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-content .service-selected {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    margin: 30px 0;
}

.thanks-content a {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.thanks-content a:hover {
    background-color: #0052a3;
}

.page-container {
    padding: 140px 60px 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-container h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0a0a0a;
}

.page-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.page-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.page-container p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-container ul {
    margin: 20px 0 20px 30px;
}

.page-container li {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.page-container a {
    color: #0066cc;
    text-decoration: none;
}

.page-container a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.contact-info p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-info .email-display {
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    user-select: text;
    cursor: text;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 25px;
        gap: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 40px 40px 40px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-visual-overlap {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .intro-irregular {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .intro-text-block {
        margin-left: 0;
    }

    .intro-stat-offset {
        margin-top: 0;
    }

    .services-section {
        padding: 80px 40px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 42px;
    }

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

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

    .trust-items {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .page-container {
        padding: 100px 30px 40px 30px;
    }

    .page-container h1 {
        font-size: 38px;
    }
}