* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: #d4a373;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 3px;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #777;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: #e8dcc8;
}

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

.article-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.25rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block.narrow {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.opening-line {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.content-block h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c2c2c;
}

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

.content-block li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

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

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

.inline-image-wrapper.small {
    margin: 2rem 0;
    max-width: 600px;
    background-color: #d9cbb8;
}

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

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

.link-cta {
    color: #d4a373;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #d4a373;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.link-cta:hover {
    color: #b88a5e;
    border-color: #b88a5e;
}

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

.service-card:last-child {
    border-bottom: none;
}

.service-card.editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card.editorial p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4a373;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.testimonial-editorial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #d4a373;
}

.testimonial-editorial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-editorial cite {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    margin-top: 1rem;
}

.editorial-form {
    margin-top: 2rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

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

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

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

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

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

.disclaimer-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

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

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-info-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-page {
    min-height: 50vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f8f0;
    border: 1px solid #d4e8d4;
    border-radius: 3px;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2c5f2c;
    margin: 0;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.service-card.editorial.detailed {
    padding: 2rem;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    margin-bottom: 2rem;
}

.service-card.editorial.detailed:last-of-type {
    margin-bottom: 3rem;
}

.what-included {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4a373;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .content-block.narrow {
        padding: 0 1rem;
    }

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

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

    .hero-image-container {
        height: 300px;
    }
}