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

.ad-notice {
    background-color: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 0 40px;
    border-radius: 12px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 160px 60px 80px;
    align-items: center;
    position: relative;
}

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

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

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: -60px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #f0f0f0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

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

.intro-story {
    padding: 100px 60px;
    background-color: #fafafa;
}

.intro-block-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-block-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.insight-section-layered {
    display: flex;
    padding: 120px 60px;
    align-items: center;
    position: relative;
    background-color: #ffffff;
}

.insight-visual {
    flex: 1;
    position: relative;
    z-index: 1;
    background-color: #f5f5f5;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.insight-text-overlap {
    flex: 1;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 50px;
    margin-left: -120px;
    position: relative;
    z-index: 2;
    border-radius: 12px;
}

.insight-text-overlap h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.insight-text-overlap p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #e0e0e0;
}

.services-cards-grid {
    padding: 120px 60px;
    background-color: #f9f9f9;
}

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

.section-header-centered h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a0a0a;
}

.section-header-centered p {
    font-size: 19px;
    color: #555;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 28px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

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

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: -20px;
}

.card-offset-4 {
    margin-top: 30px;
}

.card-offset-5 {
    margin-top: 10px;
}

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

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

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

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

.btn-select-service {
    display: block;
    width: calc(100% - 56px);
    margin: 0 28px 28px;
    padding: 14px 0;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-inline {
    padding: 80px 60px;
    background-color: #0066cc;
    text-align: center;
}

.testimonial-inline blockquote {
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
}

.form-section-asymmetric {
    display: flex;
    padding: 120px 60px;
    background-color: #fafafa;
    align-items: flex-start;
    gap: 80px;
}

.form-intro-block {
    flex: 1;
    position: relative;
    top: 40px;
}

.form-intro-block h2 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.form-intro-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.contact-form-offset {
    flex: 1;
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 0;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-notice {
    margin-top: 18px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

.form-notice a {
    color: #0066cc;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

.trust-section {
    padding: 100px 60px;
    background-color: #f0f4f8;
}

.trust-content-centered {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.trust-content-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-brand strong {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

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

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

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

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

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

.disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-accept {
    padding: 12px 30px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-reject {
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-actions a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: underline;
}

.about-hero-split {
    display: flex;
    padding: 160px 60px 80px;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
    color: #0a0a0a;
}

.about-text-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
}

.about-image-block {
    flex: 1;
    background-color: #f0f0f0;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.story-section {
    padding: 100px 60px;
    background-color: #fafafa;
}

.story-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-content-narrow h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
    color: #0a0a0a;
}

.story-content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.values-asymmetric {
    padding: 120px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 35px);
    min-width: 280px;
}

.value-position-1 {
    margin-top: 0;
}

.value-position-2 {
    margin-top: 50px;
}

.value-position-3 {
    margin-top: -30px;
}

.value-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-showcase {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.team-heading {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.team-intro {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.team-visual {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

.team-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.cta-section-centered {
    padding: 100px 60px;
    background-color: #0066cc;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section-centered p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.services-hero {
    padding: 160px 60px 80px;
    text-align: center;
    background-color: #fafafa;
}

.services-hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.services-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-layout-left {
    flex-direction: row;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

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

.service-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-benefits li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-size: 15px;
    color: #666;
    margin-right: 10px;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.cta-bottom-section {
    padding: 80px 60px;
    background-color: #fafafa;
    text-align: center;
}

.cta-bottom-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a0a0a;
}

.cta-bottom-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-hero {
    padding: 160px 60px 80px;
    text-align: center;
    background-color: #fafafa;
}

.contact-hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.contact-hero p {
    font-size: 20px;
    color: #555;
}

.contact-info-section {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0a0a0a;
}

.contact-item {
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.contact-cta-section {
    padding: 100px 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.contact-cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-section {
    display: flex;
    padding: 160px 60px 100px;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.service-confirmation {
    font-size: 18px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

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

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #0a0a0a;
}

.legal-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 50px;
}

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

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

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

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

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

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

.legal-updated {
    margin-top: 60px;
    font-style: italic;
    color: #777;
    font-size: 14px;
}

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

.cookie-table th,
.cookie-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

    .hero-image-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .nav-floating {
        padding: 20px 30px;
        margin: 0 20px;
    }

    .insight-section-layered {
        flex-direction: column;
        padding: 80px 40px;
    }

    .insight-text-overlap {
        margin-left: 0;
        margin-top: -60px;
    }

    .form-section-asymmetric {
        flex-direction: column;
        padding: 80px 40px;
    }

    .cards-asymmetric {
        gap: 30px;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .service-item {
        flex-direction: column;
        gap: 40px;
    }

    .service-layout-right {
        flex-direction: column;
    }

    .about-hero-split {
        flex-direction: column;
        padding: 140px 40px 60px;
    }

    .contact-info-section {
        flex-direction: column;
        padding: 80px 40px;
    }

    .thanks-section {
        flex-direction: column;
        padding: 140px 40px 80px;
    }

    .values-asymmetric {
        padding: 80px 40px;
    }

    .value-card {
        width: calc(50% - 25px);
    }

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

    .footer-links {
        gap: 50px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title-large {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .service-card,
    .value-card {
        width: 100%;
    }

    .section-header-centered h2,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .cards-asymmetric .service-card {
        margin-top: 0;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .legal-page {
        padding: 140px 30px 80px;
    }

    .cookie-banner {
        padding: 20px 30px;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}