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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6b9f;
    --accent-color: #d4a574;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.editorial-main {
    padding: 40px 0;
}

.story-article {
    background-color: var(--background-white);
}

.hero-story {
    margin-bottom: 60px;
}

.hero-story h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.intro-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.inline-image {
    margin: 40px 0;
    background-color: var(--background-light);
}

.inline-image.center {
    text-align: center;
}

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

.story-body {
    margin-bottom: 50px;
}

.story-body h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    line-height: 1.4;
    color: var(--text-dark);
}

.story-body p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-inline p {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-inline {
    text-align: center;
    margin: 45px 0;
}

.btn-inline {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.btn-inline:hover {
    background-color: var(--secondary-color);
}

.services-editorial {
    background-color: var(--background-light);
    padding: 50px 0;
    margin: 60px 0;
}

.service-card {
    background-color: var(--background-white);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.service-card p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.select-service-btn {
    padding: 10px 25px;
    background-color: var(--accent-color);
    color: var(--background-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: var(--background-light);
    padding: 50px 0;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > .story-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.disclaimer-box {
    margin: 50px 0;
    padding: 25px;
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 5px;
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--background-white);
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4b5563;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: var(--background-white);
}

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

.page-header {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ul {
    margin: 20px 0 20px 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 20px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content .btn-inline {
    margin-top: 30px;
}

.contact-info {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-info strong {
    color: var(--text-dark);
}

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

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

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

    .story-body p {
        font-size: 1rem;
    }

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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