* {
    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: #2a2a2a;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    background: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 2px;
}

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

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

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

.hero-content-offset {
    width: 50%;
    padding-right: 80px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 60%;
    height: 70%;
    z-index: 1;
    background: #e8e8e8;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 18px 42px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 2px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #333;
}

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

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

.intro-block-left h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.intro-visual-right {
    width: 55%;
    background: #e8e8e8;
}

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

.services-asymmetric {
    padding: 140px 60px 100px 60px;
    background: #f5f5f5;
}

.section-header-offset {
    margin-left: 15%;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    background: #ffffff;
    width: calc(33.333% - 30px);
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e8e8e8;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 30px 15px 30px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 30px 20px 30px;
}

.btn-select-service {
    margin: 0 30px 30px 30px;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
}

.btn-select-service:hover {
    background: #333;
}

.cta-overlap {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: #ccc;
}

.form-section {
    padding: 120px 60px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 700px;
    padding: 60px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    color: #1a1a1a;
}

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

.form-group input[readonly] {
    background: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
}

.btn-submit:hover {
    background: #333;
}

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

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

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-block h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ccc;
}

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

.footer-block a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 40px;
    border-left: 3px solid #555;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    border-radius: 2px;
}

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

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

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

.cookie-content a {
    color: #1a1a1a;
    font-weight: 600;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-accept {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-accept:hover {
    background: #333;
}

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

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

.page-hero-offset {
    padding: 180px 60px 80px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero-offset h1 {
    font-size: 68px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #1a1a1a;
    margin-left: 15%;
}

.page-hero-offset p {
    font-size: 20px;
    color: #555;
    margin-left: 15%;
}

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

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

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
    padding: 0 40px;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

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

.values-section {
    padding: 80px 60px 0 60px;
}

.values-section h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 50%;
    background: #e8e8e8;
}

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

.service-detail-content {
    width: 50%;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-service-cta {
    display: inline-block;
    padding: 16px 38px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-service-cta:hover {
    background: #333;
}

.cta-services-bottom {
    padding: 100px 60px;
    background: #f5f5f5;
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #333;
}

.contact-layout {
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.info-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.note-small {
    font-size: 14px;
    color: #777;
}

.link-inline {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.contact-visual {
    width: 50%;
    background: #e8e8e8;
}

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

.map-notice {
    padding: 60px 60px 80px 60px;
    text-align: center;
    background: #f5f5f5;
}

.map-notice p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-container {
    padding: 120px 60px;
    background: #ffffff;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    width: 55%;
}

.thanks-content h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.thanks-info {
    padding: 40px;
    background: #f9f9f9;
    margin-bottom: 40px;
    border-left: 4px solid #1a1a1a;
}

.thanks-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 16px 36px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    padding: 16px 36px;
    background: #e0e0e0;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #ccc;
}

.thanks-visual {
    width: 45%;
    height: 500px;
    background: #e8e8e8;
}

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

.legal-page {
    padding: 80px 60px 120px 60px;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 16px;
    color: #777;
    margin-bottom: 60px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

@media (max-width: 1024px) {
    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 80px 30px;
    }

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

    .hero-content-offset h1 {
        font-size: 48px;
    }

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

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

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
        padding-left: 0;
    }

    .services-asymmetric {
        padding: 80px 30px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .form-section {
        padding: 80px 30px;
    }

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

    .footer-asymmetric {
        padding: 60px 30px 30px 30px;
    }

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

    .page-hero-offset h1 {
        font-size: 48px;
        margin-left: 0;
    }

    .page-hero-offset p {
        margin-left: 0;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .contact-info-block,
    .contact-visual {
        width: 100%;
    }

    .thanks-container {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

    .thanks-content,
    .thanks-visual {
        width: 100%;
    }

    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
    }

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