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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b4513;
    --accent-color: #c89968;
    --text-color: #333;
    --light-bg: #f8f6f3;
    --border-color: #ddd;
    --white: #ffffff;
}

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

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

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

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

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

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.hero-image {
    margin: 3rem -2rem 3rem -2rem;
    background-color: var(--light-bg);
}

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

.text-block {
    margin-bottom: 3rem;
}

.text-block h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-block h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.inline-image {
    margin: 3rem 0;
    background-color: var(--light-bg);
}

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

.inline-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.cta-inline {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary-color);
}

.cta-inline p {
    font-size: 1.1rem;
    margin: 0;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.numbered-list {
    margin: 3rem 0;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.list-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.list-item .content h3 {
    margin-top: 0;
}

.testimonial-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-style: italic;
}

.testimonial-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.services-preview {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

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

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

.service-card .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-form-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid var(--border-color);
}

.cta-form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-form-section > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #666;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.article-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.disclaimer {
    background-color: var(--light-bg);
    padding: 2rem;
    margin-bottom: 3rem;
}

.disclaimer h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

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

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

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    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-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

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

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

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

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
}

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

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

.service-detail h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail .price-tag {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.service-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.service-detail li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

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

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-info {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
}

.contact-info h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

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

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

.about-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section {
    margin-bottom: 3rem;
}

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

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-content .service-selected {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 2rem 0;
}

.thanks-content .btn-secondary {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

    .hero-image {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 0.5rem;
    }

    .service-cards {
        gap: 1.5rem;
    }

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