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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f7f4;
    --accent: #d4a574;
    --text-primary: #2c2c2c;
    --text-secondary: #666;
    --border-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-primary);
    background-color: #fff;
    line-height: 1.8;
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent);
    color: var(--primary-dark);
}

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

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

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

.nav-minimal {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.editorial-layout {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: normal;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    font-style: italic;
}

.content-narrow {
    padding: 60px 0;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.4;
}

.content-narrow p {
    margin-bottom: 24px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
}

.inline-cta {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 20px;
    margin: 30px 0;
    font-weight: bold;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #b8935f;
}

.section-alt {
    background-color: var(--primary-light);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff;
    border-left: 3px solid var(--accent);
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: var(--text-secondary);
}

.service-card-editorial {
    margin: 50px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid var(--border-light);
}

.service-card-editorial h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}

.service-card-editorial p {
    margin-bottom: 16px;
}

.price-tag {
    font-size: 32px;
    color: var(--accent);
    font-weight: bold;
    margin: 25px 0;
}

.btn-select-service {
    background-color: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.benefit-list {
    margin: 30px 0;
    padding-left: 25px;
}

.benefit-list li {
    margin-bottom: 16px;
    line-height: 1.7;
}

.editorial-form {
    margin: 40px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid var(--border-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    font-size: 16px;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input[readonly] {
    background-color: var(--primary-light);
    cursor: not-allowed;
}

.btn-submit {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 50px 20px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 14px;
    color: #999;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
}

.thanks-container p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-summary {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--primary-light);
    border-left: 3px solid var(--accent);
}

.service-summary strong {
    font-size: 22px;
    color: var(--accent);
}

.btn-home {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 35px;
    background-color: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: normal;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: normal;
}

.legal-container p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container li {
    margin-bottom: 12px;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
}

.contact-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.contact-info {
    margin: 30px 0;
    padding: 30px;
    background-color: var(--primary-light);
}

.contact-info p {
    margin-bottom: 15px;
}

.services-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.services-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: normal;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    padding: 40px;
    background-color: var(--primary-light);
    border-left: 3px solid var(--accent);
}

.service-item h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.service-item p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    color: var(--accent);
    font-weight: bold;
    margin-top: 25px;
}

.about-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: normal;
}

.about-container h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: normal;
}

.about-container p {
    margin-bottom: 24px;
    line-height: 1.8;
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .service-card-editorial {
        padding: 25px;
    }

    .testimonial-inline {
        padding: 20px;
        font-size: 18px;
    }

    .editorial-form {
        padding: 25px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}