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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #333;
    --light-bg: #f8f6f3;
    --border-color: #e0ddd8;
    --white: #ffffff;
}

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

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.editorial-layout {
    background-color: var(--white);
}

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

.story-header {
    margin-bottom: 3rem;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: normal;
}

.header-image {
    width: 100%;
    margin-top: 2rem;
    background-color: var(--light-bg);
}

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

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

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

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

.inline-image-wrapper {
    width: 100%;
    margin: 2.5rem 0;
    background-color: var(--light-bg);
}

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

.story-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
}

.story-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
    font-weight: normal;
}

.problems-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.problem-card {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-color);
}

.problem-card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.problem-card p {
    margin-bottom: 0;
}

.service-list-editorial {
    margin: 2.5rem 0;
}

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

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

.service-item h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1rem 0;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 3px;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 3px;
    font-size: 1.05rem;
    transition: all 0.3s;
}

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

.testimonial {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: var(--light-bg);
    font-style: italic;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.editorial-form {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1rem 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent-color);
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

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

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.services-detail {
    margin: 2rem 0;
}

.service-detail-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-price-large {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.service-detail-item ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-detail-item ul li {
    margin-bottom: 0.8rem;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--light-bg);
}

.cta-section h2 {
    margin-top: 0;
}

.about-intro,
.philosophy-section,
.process-approach,
.values-section,
.experience-section,
.team-commitment {
    margin-bottom: 3rem;
}

.values-list {
    margin: 2rem 0;
}

.value-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
}

.value-item h3 {
    margin-top: 0;
}

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

.contact-details {
    margin: 3rem 0;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-note {
    margin: 3rem 0;
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.faq-section {
    margin: 3rem 0;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.thanks-section {
    margin: 2rem 0;
    padding: 3rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.steps-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-note {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #fff8e1;
    border-left: 3px solid #ffc107;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 900px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--secondary-color);
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .story-content h2 {
        font-size: 1.5rem;
    }

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

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}