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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0052a3;
}

.hero-visual-overlap {
    position: absolute;
    right: 5%;
    top: 180px;
    width: 45%;
    max-width: 650px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e9ecef;
}

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

.intro-block-irregular {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    background: white;
}

.intro-text-narrow {
    flex: 2;
    max-width: 680px;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.intro-visual-small {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.services-asymmetric {
    padding: 120px 8%;
    background: #f8f9fa;
}

.services-header-offset {
    max-width: 650px;
    margin-bottom: 70px;
    margin-left: 10%;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

.service-cards-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 700px;
}

.card-left {
    align-self: flex-start;
    margin-left: 5%;
}

.card-right {
    align-self: flex-end;
    margin-right: 5%;
}

.card-center {
    align-self: center;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0066cc;
    margin-top: 10px;
}

.select-service {
    padding: 12px 24px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

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

.form-section-offset {
    padding: 100px 8%;
    background: white;
}

.form-container-asymmetric {
    max-width: 650px;
    margin-left: 15%;
}

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-intro p {
    color: #666;
    font-size: 1.05rem;
}

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

.main-form input,
.main-form textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    padding: 14px 18px;
    background: #f0f8ff;
    border-radius: 6px;
    border: 1px solid #b3d9ff;
}

.selected-service-display p {
    color: #444;
    font-size: 0.95rem;
}

#service-name {
    font-weight: 600;
    color: #0066cc;
}

.btn-submit {
    padding: 16px 32px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

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

.insight-block {
    padding: 100px 10%;
    background: #1a1a1a;
    color: white;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.footer-asymmetric {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 8% 30px;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col ul {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.about-hero-offset {
    padding: 140px 8% 80px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.about-text-block {
    flex: 1;
    max-width: 550px;
}

.about-text-block h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.about-image-overlap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
}

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

.story-section {
    padding: 100px 10%;
    background: white;
}

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

.story-content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.values-grid-asymmetric {
    padding: 80px 8%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-offset-left {
    align-self: flex-start;
    margin-left: 8%;
}

.value-offset-right {
    align-self: flex-end;
    margin-right: 8%;
}

.value-center {
    align-self: center;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-approach {
    padding: 100px 8%;
    background: white;
}

.team-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
    min-width: 240px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.approach-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #0066cc;
}

.approach-item p {
    color: #555;
    line-height: 1.6;
}

.services-hero {
    padding: 140px 8% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.15rem;
    color: #555;
}

.services-detailed {
    padding: 80px 8%;
    background: white;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 16px;
}

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

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

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

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

.service-pricing {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 0.95rem;
    color: #666;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
}

.contact-hero {
    padding: 140px 8% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #555;
}

.contact-content-asymmetric {
    padding: 80px 8%;
    background: white;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0066cc;
}

.info-item p {
    color: #444;
    line-height: 1.7;
}

.email-display {
    font-weight: 500;
    color: #0066cc;
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
}

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

.location-info {
    padding: 60px 8%;
    background: #f8f9fa;
    text-align: center;
}

.location-info h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.location-info p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-hero {
    padding: 180px 8% 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-detail {
    font-size: 1.05rem;
    color: #666;
}

.service-confirmation {
    font-weight: 600;
    color: #0066cc;
    margin-top: 25px;
}

.btn-return {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 30px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: 500;
}

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

.legal-content {
    padding: 140px 8% 80px;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: #444;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 8px;
    color: #444;
}

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

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

.legal-updated {
    font-style: italic;
    color: #666;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 5% 60px;
    }

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

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .hero-visual-overlap {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .intro-block-irregular {
        flex-direction: column;
        gap: 30px;
        padding: 60px 5%;
    }

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

    .service-card {
        max-width: 100%;
    }

    .card-left,
    .card-right,
    .card-center {
        align-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .about-hero-offset {
        flex-direction: column;
        gap: 40px;
        padding: 100px 5% 60px;
    }

    .service-detail-card {
        flex-direction: column !important;
        padding: 30px;
    }

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

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

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

    .nav-floating {
        top: 10px;
        padding: 10px 15px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }
}