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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --light-bg: #f9f6f3;
    --dark-bg: #1a1410;
    --text-color: #2c2c2c;
    --light-text: #666;
    --border-color: #e0d8d0;
    --max-width: 720px;
}

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

.main-nav {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: #f9f6f3;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

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

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.article-intro {
    font-size: 1.3rem;
    color: var(--light-text);
    line-height: 1.6;
    font-style: italic;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

.hero-image {
    margin: 3rem 0;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

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

.text-section {
    margin: 3rem 0;
    padding: 0;
}

.text-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.text-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.text-section h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

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

.text-section ul,
.text-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

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

.accent-bg {
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-left: 4px solid var(--accent-color);
}

.dark-bg {
    background-color: var(--dark-bg);
    color: #f9f6f3;
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--accent-color);
}

.insight-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    padding: 2rem 2rem 2rem 3rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary-color);
    background-color: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
}

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

.cta-link {
    color: var(--secondary-color);
    font-size: 1.15rem;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.cta-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-color);
}

.testimonial-section {
    margin: 4rem 0;
}

.testimonial-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

.testimonial cite {
    font-style: normal;
    color: var(--light-text);
    font-size: 0.95rem;
}

.service-preview {
    margin: 4rem 0;
}

.service-preview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #fff;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.btn-card {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

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

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    background-color: #fff;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
}

.comparison-item.highlighted {
    border-color: var(--secondary-color);
    background-color: rgba(212, 165, 116, 0.05);
}

.comparison-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.comparison-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.comparison-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-intro {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

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

.btn-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.final-cta {
    background-color: var(--primary-color);
    color: #f9f6f3;
    padding: 3rem 2rem;
    margin: 4rem -2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

.faq-item p {
    color: var(--text-color);
}

.main-footer {
    background-color: var(--dark-bg);
    color: #f9f6f3;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: #f9f6f3;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-reject {
    background-color: transparent;
    color: #f9f6f3;
    border: 2px solid #666;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.services-overview {
    margin: 3rem 0;
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.service-detail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.service-content li {
    margin-bottom: 0.7rem;
}

.btn-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-item p {
    color: var(--text-color);
    line-height: 1.8;
}

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

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-note {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-note p {
    margin-bottom: 1rem;
}

.contact-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    text-align: left;
    margin: 2rem 0;
}

.thanks-message p {
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.next-steps ol {
    margin-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

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

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

.legal-page p {
    margin-bottom: 1.2rem;
}

.legal-page strong {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table tr:hover {
    background-color: rgba(212, 165, 116, 0.05);
}

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .article-intro {
        font-size: 1.1rem;
    }

    .text-section h2 {
        font-size: 1.6rem;
    }

    .text-section h3 {
        font-size: 1.3rem;
    }

    .insight-quote {
        font-size: 1.2rem;
        padding: 1.5rem 1rem 1.5rem 2rem;
    }

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

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

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        gap: 1rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}