* {
    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;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4f4f4;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.ad-notice {
    font-size: 0.75rem;
    color: #bbb;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.editorial-layout {
    background-color: #fff;
}

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

.article-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

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

.story-section {
    padding: 4rem 2rem;
}

.story-section h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.inline-image-block {
    margin: 3rem 0;
    background-color: #f8f8f8;
    padding: 1.5rem;
}

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

.image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.story-quote {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0ebe1;
    border-left: 4px solid #d4a574;
    font-style: italic;
}

.story-quote p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.story-quote cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.services-inline {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.service-cards-editorial {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-left: 3px solid #d4a574;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    color: #d4a574;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-select-service.selected {
    background-color: #27ae60;
}

.form-section-inline {
    background-color: #fff;
    padding: 4rem 2rem;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

.form-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.3rem;
}

.btn-submit {
    background-color: #d4a574;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.main-footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h3 {
    font-size: 1.1rem;
    color: #f4f4f4;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-container a {
    color: #d4a574;
    text-decoration: none;
}

.thanks-container a:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 0.7rem;
    color: #444;
}

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

    .nav-links {
        gap: 1rem;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

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

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