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

.ad-disclosure {
    background-color: #f0e6d2;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: #5a5a5a;
    border-bottom: 1px solid #d4c4a8;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-image-wrap {
    width: 100%;
    margin-bottom: 35px;
    background-color: #e8e0d5;
    overflow: hidden;
    border-radius: 3px;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.story-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-intro {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.story-content {
    font-size: 1.05rem;
}

.story-paragraph {
    margin-bottom: 25px;
    text-align: justify;
}

.story-heading {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #e8e0d5;
    overflow: hidden;
    border-radius: 3px;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: #6a6a6a;
    background-color: #f5f1ea;
}

.citation {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

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

.cta-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    margin: 0 10px;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.cta-link:hover {
    background-color: #6f5636;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f9f7f4;
    border-left: 4px solid #8b6f47;
}

.testimonial-inline blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #3a3a3a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: normal;
    color: #7a7a7a;
}

.services-cards {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 50px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 20px 25px;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-price {
    margin: 20px 25px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
}

.select-service-btn, .service-link {
    display: inline-block;
    margin: 0 25px 25px 25px;
    padding: 12px 25px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.select-service-btn:hover, .service-link:hover {
    background-color: #1a1a1a;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f7f4;
    border-radius: 3px;
}

.editorial-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff8e7;
    border: 1px solid #e6d5a8;
    border-radius: 3px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 50px 40px 20px 40px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.references-list a {
    color: #a8c5e0;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #9a9a9a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6f5636;
}

.cookie-btn.reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

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

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-update {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.contact-info-block {
    background-color: #f9f7f4;
    padding: 35px;
    border-radius: 3px;
    margin-bottom: 40px;
}

.thanks-content {
    text-align: center;
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-intro {
        font-size: 1.05rem;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }
}