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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffd369;
    color: #1a1a2e;
}

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

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

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

.ad-disclosure {
    background-color: #fff3cd;
    border-bottom: 1px solid #ffeaa7;
    padding: 0.6rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #856404;
}

.editorial-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a2e;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #16213e;
}

.editorial-main {
    background-color: #ffffff;
}

.story-article {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    background-color: #f8f9fa;
}

.opening-line {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 500;
}

.story-intro p,
.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.inline-image-section {
    background-color: #ffffff;
}

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

.figure-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

figcaption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #16213e;
    font-weight: 600;
}

.services-editorial {
    background-color: #f8f9fa;
}

.service-card-editorial {
    margin: 3rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial:last-of-type {
    border-bottom: none;
}

.service-image-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-price {
    font-size: 1.8rem;
    color: #16213e;
    font-weight: 700;
    margin: 1.5rem 0;
}

.service-select-btn {
    padding: 0.9rem 2rem;
    background-color: #16213e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-editorial {
    background-color: #fff3e0;
    border-top: 2px solid #ffd369;
    border-bottom: 2px solid #ffd369;
}

#selectedServiceDisplay {
    color: #16213e;
    font-weight: 600;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16213e;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #16213e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #ffffff;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #16213e;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.process-section {
    background-color: #f8f9fa;
}

.process-step {
    margin: 2.5rem 0;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #16213e;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.final-cta-section {
    background-color: #ffffff;
    text-align: center;
}

.cta-link-editorial {
    display: inline-block;
    padding: 1.1rem 3rem;
    background-color: #16213e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.15rem;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.cta-link-editorial:hover {
    background-color: #0f3460;
}

.cta-secondary {
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
}

.cta-secondary a {
    color: #16213e;
    text-decoration: underline;
}

.disclaimer-section {
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.editorial-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd369;
}

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

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

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 3rem 0 2rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.about-content,
.contact-content,
.legal-content,
.thanks-section {
    background-color: #ffffff;
}

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

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

.contact-item h3 {
    font-size: 1.4rem;
    color: #16213e;
    margin-bottom: 0.8rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
}

.legal-content p,
.legal-content li {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: #16213e;
    text-decoration: underline;
}

.thanks-section {
    text-align: center;
    padding: 4rem 0;
}

.thanks-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.thanks-cta .cta-link-editorial {
    margin: 0.5rem;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .page-header h1,
    .thanks-section h1 {
        font-size: 2rem;
    }
}