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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-minimal {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-minimal {
    display: flex;
    gap: 2.5rem;
}

.nav-minimal a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #666;
}

.hero-minimal {
    padding: 8rem 0 6rem;
}

.hero-content-centered {
    text-align: center;
    margin-bottom: 5rem;
}

.display-large {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.hero-visual {
    width: 100%;
    background-color: #f5f5f5;
}

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

.statement-block {
    padding: 10rem 0;
}

.heading-xl {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.body-large {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.visual-break {
    margin: 8rem 0;
    background-color: #f5f5f5;
}

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

.approach-section {
    padding: 10rem 0;
}

.split-content {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
    background-color: #f5f5f5;
}

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

.heading-large {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 10rem 0;
    background-color: #fafafa;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.service-card {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-card:last-child {
    border-bottom: none;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
}

.link-underline {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 0.25rem;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.link-underline:hover {
    opacity: 0.6;
}

.form-section {
    padding: 10rem 0;
}

.form-minimal {
    margin-top: 4rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.02em;
}

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

.visual-close {
    margin: 8rem 0 0;
    background-color: #f5f5f5;
}

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

.disclaimer-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
    font-style: italic;
}

.footer-minimal {
    padding: 4rem 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

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

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

.page-header {
    padding: 6rem 0 4rem;
    border-bottom: 1px solid #e5e5e5;
}

.content-block {
    padding: 6rem 0;
}

.body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.split-section {
    padding: 8rem 0;
}

.services-detailed {
    padding: 6rem 0;
}

.service-detail {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
}

.service-features {
    margin-top: 2.5rem;
    list-style: none;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-features li::before {
    content: "—";
    position: absolute;
    left: 0;
}

.contact-section {
    padding: 6rem 0;
}

.contact-block {
    margin-bottom: 5rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.heading-medium {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.thanks-section {
    padding: 10rem 0;
    text-align: center;
}

.thanks-content {
    margin: 4rem 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .display-large {
        font-size: 2.5rem;
    }

    .heading-xl {
        font-size: 2rem;
    }

    .heading-large {
        font-size: 1.75rem;
    }

    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-minimal {
        gap: 1.5rem;
    }

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

    .hero-minimal {
        padding: 4rem 0 3rem;
    }

    .statement-block,
    .approach-section,
    .services-preview,
    .form-section {
        padding: 6rem 0;
    }
}
