* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 240px;
    background-color: #1a2332;
    padding: 48px 0 24px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    padding: 0 32px;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-links li a {
    display: block;
    padding: 14px 32px;
    color: #a8b2c1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-links li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.main-offset {
    margin-left: 240px;
    padding-top: 36px;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    margin-bottom: 120px;
    align-items: center;
}

.hero-content-overlap {
    position: relative;
    z-index: 10;
    width: 50%;
    padding: 80px 64px 80px 80px;
    background-color: #ffffff;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a2332;
    letter-spacing: -1px;
}

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

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 60px;
    width: 58%;
    height: 480px;
    overflow: hidden;
}

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

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

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

.intro-irregular {
    display: flex;
    gap: 64px;
    padding: 80px 80px 100px;
    align-items: center;
}

.intro-block-left {
    width: 45%;
}

.intro-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2332;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.intro-block-right {
    width: 55%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.intro-block-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.stories-showcase {
    padding: 100px 80px;
    background-color: #f8f9fb;
}

.stories-header-offset {
    max-width: 680px;
    margin-bottom: 72px;
    padding-left: 120px;
}

.stories-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

.stories-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.6;
}

.story-cards-staggered {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.story-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 120px;
}

.card-offset-3 {
    margin-left: 240px;
}

.card-offset-4 {
    margin-left: 80px;
}

.card-offset-5 {
    margin-left: 160px;
}

.card-image-container {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

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

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin-top: auto;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #1a2332;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2c3e50;
    transform: translateX(4px);
}

.form-section-float {
    padding: 120px 80px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 600px;
    margin-left: 180px;
    padding: 56px;
    background-color: #f8f9fb;
    border-radius: 8px;
}

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

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

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

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

.form-field input {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2563eb;
    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: #1d4ed8;
    transform: translateY(-2px);
}

.trust-offset {
    display: flex;
    gap: 80px;
    padding: 100px 80px;
    align-items: center;
}

.trust-content {
    width: 50%;
    padding-left: 60px;
}

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

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.link-inline {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.trust-image {
    width: 50%;
    height: 420px;
    overflow: hidden;
    border-radius: 4px;
}

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-asymmetric {
    background-color: #1a2332;
    color: #a8b2c1;
    padding: 80px 80px 40px;
    margin-left: 240px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-disclaimer {
    padding-top: 32px;
    border-top: 1px solid rgba(168, 178, 193, 0.2);
    font-size: 13px;
    line-height: 1.6;
    color: #6c7a8c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 240px;
    right: 0;
    background-color: #1a2332;
    padding: 24px 80px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-content p {
    color: #a8b2c1;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

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

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #a8b2c1;
    border: 2px solid #a8b2c1;
}

.btn-cookie-reject:hover {
    background-color: rgba(168, 178, 193, 0.1);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 80px;
}

.about-text-block {
    width: 45%;
    padding: 80px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-block h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
}

.about-image-block {
    width: 55%;
    overflow: hidden;
}

.about-image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-method-irregular {
    padding: 80px 80px 80px 180px;
    background-color: #f8f9fb;
}

.about-method-irregular h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 56px;
    color: #1a2332;
}

.method-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-item {
    max-width: 640px;
}

.method-offset {
    margin-left: 160px;
}

.method-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

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

.about-values-offset {
    padding: 100px 80px 100px 120px;
}

.values-content {
    max-width: 720px;
}

.values-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a2332;
}

.values-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-team-staggered {
    padding: 80px 80px 120px;
    background-color: #f8f9fb;
}

.about-team-staggered h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    padding-left: 80px;
    color: #1a2332;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-member {
    max-width: 600px;
    padding: 36px;
    background-color: #ffffff;
    border-radius: 6px;
}

.member-offset {
    margin-left: 240px;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

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

.services-intro-overlap {
    padding: 80px 80px 60px 120px;
    max-width: 700px;
}

.services-intro-overlap h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

.services-intro-overlap p {
    font-size: 19px;
    line-height: 1.6;
    color: #5a6c7d;
}

.services-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 60px 80px 100px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-offset-a {
    margin-left: 0;
}

.service-offset-b {
    margin-left: 140px;
}

.service-visual {
    width: 400px;
    height: 320px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.service-details > p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #5a6c7d;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

.services-cta-float {
    padding: 80px 80px 120px 200px;
    background-color: #f8f9fb;
    text-align: left;
}

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

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

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

.cta-secondary:hover {
    background-color: #2c3e50;
    transform: translateX(4px);
}

.contact-layout-asymmetric {
    padding: 80px 80px 120px;
}

.contact-header {
    margin-bottom: 60px;
    padding-left: 120px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

.contact-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-info-blocks {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 200px;
    padding: 32px;
    background-color: #f8f9fb;
    border-radius: 6px;
}

.block-offset-1 {
    margin-left: 0;
}

.block-offset-2 {
    margin-left: 40px;
}

.block-offset-3 {
    margin-left: 80px;
}

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

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

.contact-visual {
    width: 700px;
    height: 400px;
    margin-left: 120px;
    overflow: hidden;
    border-radius: 6px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note {
    padding: 60px 80px 40px 180px;
    max-width: 800px;
}

.contact-note h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-note a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-section-centered {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
}

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-confirmation {
    font-weight: 600;
    color: #2563eb;
}

.btn-return {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 36px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-content {
    max-width: 800px;
    padding: 80px 80px 120px 120px;
}

.legal-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1a2332;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
}

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

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

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

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fb;
    font-weight: 700;
    color: #1a2332;
}

.cookie-table td {
    color: #5a6c7d;
    font-size: 15px;
}

@media (max-width: 1200px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-offset {
        margin-left: 200px;
    }

    .cookie-banner {
        left: 200px;
    }

    .footer-asymmetric {
        margin-left: 200px;
    }
}

@media (max-width: 900px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 24px;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .main-offset {
        margin-left: 0;
    }

    .cookie-banner {
        left: 0;
    }

    .footer-asymmetric {
        margin-left: 0;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-overlap {
        width: 100%;
    }

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

    .intro-irregular,
    .trust-offset,
    .about-hero-split,
    .service-block {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-block-right,
    .trust-content,
    .trust-image,
    .about-text-block,
    .about-image-block,
    .service-visual,
    .service-details {
        width: 100%;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .member-offset,
    .service-offset-a,
    .service-offset-b {
        margin-left: 0;
    }

    .story-card {
        flex-direction: column;
    }

    .card-image-container {
        width: 100%;
        height: 250px;
    }
}