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

.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #ccc;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
}

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

.article-hero {
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #2c2c2c;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    color: #555;
    font-style: italic;
}

.article-content {
    padding: 3rem 0;
}

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

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

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-button-text {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #c94e3a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button-text:hover {
    background-color: #a83d2d;
}

.services-cards {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 2rem;
    border-radius: 6px;
}

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

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

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #c94e3a;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.editorial-form {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

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

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

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

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

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

.submit-button:hover {
    background-color: #a83d2d;
}

.testimonial {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid #c94e3a;
    background-color: #f9f9f9;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.disclaimer-box {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff9e6;
    border: 1px solid #e6d89e;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: #5a5a5a;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.about-page-header {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.about-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.about-image {
    margin: 3rem 0;
    background-color: #f5f5f5;
}

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

.services-page-header {
    background-color: #c94e3a;
    color: #ffffff;
    padding: 3.5rem 2rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 2.5rem;
}

.services-intro {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-block {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #c94e3a;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 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;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: #3a3a3a;
}

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

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.7;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.thanks-page {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

.thanks-page p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-page a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #c94e3a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-page a:hover {
    background-color: #a83d2d;
}

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

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

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .content-narrow h2 {
        font-size: 1.6rem;
    }

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

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

    .service-price {
        font-size: 1.6rem;
    }
}