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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-main {
    padding: 3rem 0;
}

.story-flow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.lead {
    font-size: 1.25rem;
    color: #546e7a;
    line-height: 1.6;
}

.story-image,
.story-image-small {
    margin: 3rem 0;
}

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

.story-image-small {
    max-width: 500px;
    margin: 2rem auto;
}

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

.story-section {
    margin-bottom: 2.5rem;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a252f;
}

.story-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.story-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.story-section li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.highlighted {
    background-color: #fff3cd;
    padding: 2rem;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
}

.warning-list {
    list-style: none;
    margin-left: 0;
}

.warning-list li {
    padding-left: 1.5rem;
    position: relative;
}

.warning-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
}

.inline-cta {
    background-color: #e8f5e9;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

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

.btn-inline {
    display: inline-block;
    background-color: #2e7d32;
    color: #fff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-inline:hover {
    background-color: #1b5e20;
}

.trust-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #546e7a;
}

.trust-block blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
}

.trust-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #546e7a;
}

.services-embedded {
    margin: 3rem 0;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.select-service {
    display: inline-block;
    background-color: #1976d2;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1565c0;
}

.story-form {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.story-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    background-color: #2e7d32;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1b5e20;
}

.final-cta-section {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

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

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

.footer-note {
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e1e8ed;
    padding: 1.5rem;
    display: none;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #546e7a;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #2e7d32;
    color: #fff;
}

.btn-cookie.accept:hover {
    background-color: #1b5e20;
}

.btn-cookie.reject {
    background-color: #e0e0e0;
    color: #2c3e50;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 150;
}

.sticky-cta a {
    display: block;
    background-color: #1976d2;
    color: #fff;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background-color: #1565c0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.service-detail-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.6;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-includes ul {
    margin-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.btn-service {
    display: inline-block;
    background-color: #1976d2;
    color: #fff;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1565c0;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

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

.contact-item p {
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.contact-item a {
    color: #1976d2;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #78909c;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e8ed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.faq-item p {
    color: #546e7a;
}

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

.interim-tips {
    background-color: #e3f2fd;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.interim-tips p {
    margin-bottom: 1.5rem;
}

.interim-tips p:last-child {
    margin-bottom: 0;
}

.legal-page .story-section {
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    margin-top: 2rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .story-header h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta a {
        display: block;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .story-header h1 {
        font-size: 1.75rem;
    }

    .story-flow {
        padding: 0 1.5rem;
    }

    .service-card,
    .service-detail-card {
        padding: 1.5rem;
    }

    .story-form {
        padding: 1.5rem;
    }
}
