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

.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.story-header {
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.story-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.story-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    margin: 2.5rem 0 3rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.story-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-section {
    margin: 3.5rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #333;
}

.image-embed {
    margin: 2.5rem 0;
}

.image-embed img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.image-grid-embed {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
}

.image-grid-embed img {
    width: 50%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.highlight-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
}

.highlight-box {
    background-color: #f5f5f5;
    padding: 2rem 2.5rem;
    border-left: 4px solid #1a1a1a;
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

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

.benefit-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #666;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #2c2c2c;
    margin: 2.5rem 0;
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 3px solid #ccc;
    display: block;
}

.testimonial-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    margin-top: 1rem;
    color: #666;
}

.inline-cta {
    text-align: center;
    margin: 3.5rem 0;
}

.cta-link {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.cta-link:hover {
    background-color: #333;
}

.services-preview {
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.service-card-inline {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.service-card-inline h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.service-card-inline p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
}

.view-all-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 1.05rem;
}

.view-all-link:hover {
    text-decoration: none;
}

.editorial-form {
    margin: 2.5rem 0;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
}

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

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

.submit-button {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

.closing-section {
    margin: 4rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.closing-text {
    font-size: 1.15rem;
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

.services-detail-section {
    margin: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #555;
}

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

.service-price-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1.05rem;
    transition: background-color 0.2s;
}

.service-cta:hover {
    background-color: #333;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-block {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 1.8rem;
    border-radius: 4px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.contact-block a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-block a:hover {
    text-decoration: none;
}

.note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.8rem;
}

.thanks-content {
    margin: 3rem 0;
}

.thanks-message {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.thanks-additional {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2.5rem;
}

.thanks-additional h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page {
    max-width: 900px;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.legal-content {
    margin: 2.5rem 0;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-top: 5rem;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 1.5rem;
}

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .editorial-container {
        padding: 2rem 1.5rem 3rem;
    }

    .story-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .story-subtitle {
        font-size: 1.1rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .story-section p {
        font-size: 1.05rem;
    }

    .image-grid-embed {
        flex-direction: column;
    }

    .image-grid-embed img {
        width: 100%;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .editorial-form {
        padding: 1.8rem;
    }

    .service-content {
        padding: 2rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1.05rem;
    }

    .price-large {
        font-size: 1.7rem;
    }

    .contact-block {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .story-title {
        font-size: 1.7rem;
    }

    .story-subtitle {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }
}