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

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

.nav-minimal {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-hero {
    background-color: #fff;
    padding: 80px 24px 60px;
}

.hero-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.hero-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.inline-image {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.story-content {
    padding: 60px 24px;
    background-color: #fff;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.narrow-column h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.narrow-column p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.narrow-column ul {
    margin: 24px 0;
    padding-left: 24px;
}

.narrow-column li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.inline-cta {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.text-link-arrow {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.text-link-arrow:hover {
    opacity: 0.7;
}

.inline-image-small {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.benefit-list {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.benefit-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.services-cards {
    padding: 80px 24px;
    background-color: #fafafa;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #e8e8e8;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 24px 16px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #2d2d2d;
}

.cta-section {
    margin: 60px 0;
    padding: 48px;
    background-color: #f8f8f8;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.form-section {
    padding: 80px 24px;
    background-color: #fff;
}

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

.main-form h3 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

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

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

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

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}

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

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

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

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding-top: 32px;
    border-top: 1px solid #333;
}

.footer-references h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #b0b0b0;
}

.footer-references a {
    color: #d0d0d0;
    text-decoration: underline;
}

.footer-references a:hover {
    color: #fff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #1a1a1a;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    font-size: 0.95rem;
    color: #2d2d2d;
    margin: 0;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-cookie {
    background-color: #1a1a1a;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #2d2d2d;
}

.btn-cookie-alt {
    background-color: #e8e8e8;
    color: #1a1a1a;
}

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

.page-content {
    background-color: #fff;
    padding: 80px 24px;
    min-height: 60vh;
}

.contact-info {
    margin: 48px 0;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-note {
    padding: 24px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
    margin-top: 40px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

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

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

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

.service-detail-content {
    flex: 1 1 50%;
}

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

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

.service-detail h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0 20px;
}

.cta-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f8f8f8;
    text-align: center;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.legal-page h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.update-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-details {
    margin: 32px 0;
    padding: 24px;
    background-color: #f8f8f8;
}

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

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-narrow h1 {
        font-size: 2rem;
    }

    .intro-lead {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 16px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .service-detail {
        flex-direction: column;
        gap: 32px;
    }

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

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

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