* {
    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.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 48px;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 24px;
}

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.intro-flow {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fafafa;
}

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

.intro-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
}

.intro-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #333;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-reveal {
    padding: 120px 24px;
    background-color: #ffffff;
}

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

.content-narrow h2 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.insight-section {
    padding: 100px 24px;
    background-color: #f5f5f5;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

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

.insight-visual {
    flex: 1;
    background-color: #ddd;
}

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

.collection-showcase {
    padding: 120px 24px;
    background-color: #ffffff;
}

.collection-showcase h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 64px;
    font-weight: 700;
}

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

.showcase-card {
    width: calc(33.333% - 22px);
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.showcase-card:hover {
    transform: translateY(-4px);
}

.showcase-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-flow {
    padding: 80px 24px;
    background-color: #f9f9f9;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrap {
    margin-bottom: 48px;
    text-align: center;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: #777;
}

.form-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.form-selected {
    background-color: #f0f0f0;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    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: #333;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #f8f8f8;
}

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

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 64px 24px 24px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: #ffffff;
    box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.1);
    padding: 24px;
    border-radius: 12px;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #d0d0d0;
}

.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-top: 100px;
    background-color: #1a1a1a;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.page-hero-small {
    padding: 160px 24px 80px;
    text-align: center;
    background-color: #fafafa;
}

.page-hero-small h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-small p {
    font-size: 19px;
    color: #666;
}

.about-content {
    padding: 100px 24px;
    background-color: #ffffff;
}

.values-grid {
    padding: 80px 24px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    max-width: 320px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.story-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

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

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

.cta-section {
    padding: 80px 24px;
    text-align: center;
    background-color: #f9f9f9;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
    margin: 0 8px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e0e0e0;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
    margin: 0 8px;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.service-block {
    display: flex;
    gap: 64px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-info ul li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.service-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.service-pricing {
    margin-bottom: 20px;
}

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

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    gap: 64px;
}

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

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-text-box {
    flex: 1;
}

.contact-text-box h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-text-box p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.map-placeholder {
    background-color: #e8e8e8;
    padding: 80px 24px;
    text-align: center;
}

.map-message {
    max-width: 600px;
    margin: 0 auto;
}

.map-message p {
    font-size: 18px;
    color: #666;
}

.thanks-hero {
    padding: 180px 24px 100px;
    background-color: #fafafa;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: #666;
}

.thanks-details {
    padding: 80px 24px;
    background-color: #ffffff;
}

.next-steps {
    display: flex;
    gap: 32px;
    margin: 48px 0;
}

.step-item {
    flex: 1;
    background-color: #f5f5f5;
    padding: 28px;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-note {
    text-align: center;
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-top: 32px;
}

.legal-page {
    padding: 140px 24px 80px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-intro {
    font-size: 15px;
    color: #999;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #444;
}

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
        top: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .insight-grid,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .showcase-card {
        width: 100%;
    }

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

    .next-steps {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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