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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background: #ffffff;
}

.nav-brand {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    padding: 100px 60px;
    background: #ffffff;
}

.hero-content {
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 120px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    max-width: 500px;
}

.hero-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.intro-space {
    padding: 180px 60px;
    background: #fafafa;
    display: flex;
    justify-content: center;
}

.intro-text {
    max-width: 700px;
    text-align: center;
}

.intro-text p {
    font-size: 24px;
    line-height: 1.8;
    color: #2a2a2a;
    font-weight: 300;
}

.story-section {
    padding: 120px 60px;
    background: #ffffff;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

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

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

.insight-block {
    padding: 160px 60px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
}

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

.insight-content h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 32px;
}

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

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 140px 60px;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 100px;
}

.services-intro h2 {
    font-size: 56px;
    font-weight: 300;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 40px);
    min-width: 320px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
}

.service-visual {
    width: 100%;
    height: 260px;
    margin-bottom: 32px;
    background-color: #e8e8e8;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    padding: 0 24px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 24px;
    padding: 0 24px;
}

.service-select {
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0 24px 24px;
}

.service-select:hover {
    background: #444;
}

.testimonial-section {
    padding: 120px 60px;
    background: #2a2a2a;
    display: flex;
    justify-content: center;
}

.testimonial {
    max-width: 800px;
    text-align: center;
}

.testimonial p {
    font-size: 28px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

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

.form-container {
    max-width: 600px;
    width: 100%;
}

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

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

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

.submit-btn {
    width: 100%;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.references-section {
    padding: 80px 60px;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.references-section h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
}

.references p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.references a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 60px;
    background: #f5f5f5;
}

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

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

.main-footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 80px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

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

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

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

.footer-contact p {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #666;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background: #2a2a2a;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #f0f0f0;
    color: #2a2a2a;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 80px;
    }

    .story-layout {
        flex-direction: column;
        gap: 60px;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        padding: 24px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-minimal {
        padding: 60px 24px;
    }

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

    .intro-space,
    .story-section,
    .insight-block,
    .services-preview,
    .form-section {
        padding: 80px 24px;
    }

    .service-card {
        width: 100%;
    }

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