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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --background-accent: #ecf0f1;
    --border-color: #ddd;
    --white: #ffffff;
    --max-reading-width: 680px;
    --max-content-width: 1200px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    text-align: center;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

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

.editorial-container {
    max-width: var(--max-reading-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    position: relative;
    margin: -3rem -2rem 3rem -2rem;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.article-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

.article-subtitle {
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.page-title {
    font-size: 38px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
}

.article-intro {
    margin-bottom: 3rem;
}

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

.article-intro p {
    margin-bottom: 1.2rem;
}

.article-section {
    margin-bottom: 4rem;
}

.article-section p {
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 30px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.article-section h3 {
    font-size: 22px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-section li {
    margin-bottom: 0.8rem;
}

.bg-light {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.bg-accent {
    background-color: var(--background-accent);
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.image-inline {
    margin: 2.5rem 0;
}

.image-inline img {
    width: 100%;
    border-radius: 4px;
}

.pullquote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    padding: 2rem 0;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    color: var(--primary-color);
}

.inline-cta-box {
    background-color: var(--background-accent);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    text-align: center;
}

.cta-text {
    font-size: 20px;
    margin: 0;
}

.inline-link {
    font-weight: 600;
    text-decoration: underline;
    color: var(--secondary-color);
}

.inline-link:hover {
    color: var(--accent-color);
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.service-card-editorial {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
}

.service-card-editorial.detailed {
    border-left: 4px solid var(--secondary-color);
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-image {
    margin: 1.5rem 0;
}

.service-image img {
    width: 100%;
    border-radius: 4px;
}

.service-description {
    margin-bottom: 1rem;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-includes ul {
    margin-left: 1.5rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.service-duration {
    font-size: 16px;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-select-service {
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    transition: background-color 0.3s ease;
}

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

.testimonial-editorial {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.form-section {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 4px;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 2rem;
    text-align: center;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--white);
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.cta-section {
    text-align: center;
    background-color: var(--background-light);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 4px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: var(--white);
}

.final-thought {
    text-align: center;
    margin-top: 4rem;
}

.closing-text {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
}

.contact-split {
    margin: 2rem 0;
}

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

.contact-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-page .page-header {
    text-align: center;
}

.thanks-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 1rem;
}

#service-confirmation {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.legal-page .article-section {
    margin-bottom: 3rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .article-hero {
        margin: -2rem -1.5rem 2rem -1.5rem;
    }

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

    .hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .article-title {
        font-size: 32px;
    }

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

    .page-title {
        font-size: 30px;
    }

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

    .section-heading {
        font-size: 24px;
    }

    .pullquote {
        font-size: 20px;
    }

    .bg-light,
    .bg-accent,
    .form-section,
    .cta-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .service-price {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 14px;
    }

    .article-title {
        font-size: 26px;
    }

    .page-title {
        font-size: 26px;
    }

    .section-heading {
        font-size: 22px;
    }
}