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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.nav-minimal {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand a {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-alt);
    border-radius: 4px;
}

.editorial-main {
    min-height: calc(100vh - 200px);
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.story-section h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-section ul,
.story-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.story-section li {
    margin-bottom: 0.8rem;
}

.story-image {
    margin: 3rem 0;
    width: 100%;
    background-color: var(--bg-alt);
}

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

.story-image-small {
    margin: 2rem auto;
    max-width: 500px;
    background-color: var(--bg-alt);
}

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

.story-quote {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-alt);
    border-left: 4px solid var(--secondary-color);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
}

.story-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
}

.inline-cta {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.inline-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #2980b9;
    color: white;
}

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

.service-card {
    margin: 2rem 0;
    padding: 2rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-alt);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    text-align: left;
}

.service-image {
    margin-bottom: 1.5rem;
    width: 100%;
    background-color: var(--border-color);
}

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

.service-features {
    margin: 1.5rem 0;
    list-style-type: disc;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-section p {
    margin-bottom: 1.5rem;
}

.story-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.selected-service {
    padding: 1rem;
    background-color: #d5f4e6;
    border-left: 4px solid var(--success-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.selected-service.hidden {
    display: none;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    line-height: 1.8;
}

.contact-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-alt);
    border-left: 3px solid var(--secondary-color);
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.service-confirmation {
    margin-bottom: 2rem;
}

.service-highlight {
    padding: 1.5rem;
    background-color: #d5f4e6;
    border-left: 4px solid var(--success-color);
    font-size: 1.1rem;
}

.next-steps {
    margin: 1.5rem 0 1.5rem 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content .story-section {
    margin: 2rem 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.references-list {
    list-style-position: inside;
    font-size: 0.85rem;
}

.references-list li {
    margin-bottom: 0.5rem;
}

.references-list a {
    word-break: break-all;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    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;
}

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

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

    .story-content {
        padding: 2rem 1.5rem;
    }

    body {
        font-size: 16px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}