* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.btn-accept:hover {
    background-color: #f0f0f0;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.hero-visual {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
}

.visual-statement {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.image-text-overlap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-text-overlap img {
    width: 70%;
    height: auto;
    background-color: #f5f5f5;
}

.statement-box {
    position: absolute;
    bottom: -3rem;
    right: 5%;
    background-color: #ffffff;
    padding: 2.5rem;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.statement-box h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.statement-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.insight-reveal {
    padding: 8rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.content-centered h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.content-centered p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.price-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0;
}

.btn-select {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 3px;
}

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

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonial-block {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-block img {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    height: auto;
    background-color: #f5f5f5;
}

.testimonial-block blockquote {
    flex: 1;
    min-width: 300px;
}

.testimonial-block p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.cta-block {
    padding: 5rem 2rem;
    background-color: #f0f0f0;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    background-color: #fafafa;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    margin-top: 1rem;
}

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

.trust-elements {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    font-size: 0.95rem;
    color: #ccc;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.about-hero,
.services-hero,
.contact-hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
}

.story-content {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.visual-philosophy {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.value-block {
    margin-bottom: 3rem;
}

.value-block h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.team-snapshot {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-about .cta-content h2 {
    color: #ffffff;
}

.cta-about .cta-content p {
    color: #ccc;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
}

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

.service-detail {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail.reverse {
    background-color: #fafafa;
}

.service-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 320px;
    background-color: #f5f5f5;
}

.service-info {
    flex: 1;
    min-width: 320px;
}

.service-info h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
    color: #555;
}

.comparison-note {
    padding: 4rem 2rem;
    background-color: #f0f0f0;
}

.comparison-note h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.comparison-note p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-hero {
    padding-top: 5rem;
    background-color: #fafafa;
}

.contact-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-visual {
    flex: 1;
    min-width: 320px;
    background-color: #f5f5f5;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.directions-note {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.directions-note h3 {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.directions-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
}

.thanks-content {
    margin-top: 70px;
    padding: 8rem 2rem;
    background-color: #fafafa;
    min-height: 70vh;
}

.thanks-content h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.confirmation-details {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 3px solid #1a1a1a;
    margin: 2rem 0;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    margin-top: 70px;
    padding: 5rem 2rem;
    background-color: #fafafa;
    min-height: 70vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: #555;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .statement-box {
        position: static;
        margin-top: 2rem;
        width: 100%;
    }

    .image-text-overlap img {
        width: 100%;
    }

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

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

    .testimonial-block {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}