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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #7a9d88;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-subtle: #e5e1dc;
}

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

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.wide-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    background-color: var(--background-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--background-light);
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

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

.hero-editorial .subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image-editorial {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin: 40px 0 60px;
    border-radius: 2px;
    background-color: var(--background-light);
}

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

.story-text {
    margin-bottom: 32px;
}

.story-text p {
    margin-bottom: 28px;
}

.story-text h2 {
    font-size: 32px;
    margin: 60px 0 28px;
    font-weight: normal;
    line-height: 1.4;
}

.story-text h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: normal;
    color: var(--primary-color);
}

.inline-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 2px;
    background-color: var(--background-light);
}

.inline-cta {
    background-color: var(--background-light);
    padding: 40px;
    margin: 56px 0;
    text-align: center;
    border-left: 3px solid var(--accent-color);
}

.inline-cta h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: normal;
}

.inline-cta p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.cta-button:hover {
    background-color: #1f4438;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 60px 0;
}

.service-card-editorial {
    border-top: 1px solid var(--border-subtle);
    padding-top: 32px;
}

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

.service-price {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-card-editorial p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.form-section {
    background-color: var(--background-light);
    padding: 60px 0;
    margin: 80px 0 0;
}

.form-container {
    max-width: 580px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: normal;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-subtle);
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: var(--background-white);
    border-radius: 2px;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.submit-button:hover {
    background-color: #1f4438;
}

.testimonial-section {
    margin: 80px 0;
    padding: 60px 40px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.testimonial-section blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 60px 0 40px;
    margin-top: 100px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--background-white);
    font-family: 'Arial', sans-serif;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.footer-email {
    color: var(--background-light);
    pointer-events: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: var(--background-light);
    font-family: 'Arial', sans-serif;
}

.disclaimer {
    background-color: var(--background-light);
    padding: 40px;
    margin: 60px 0;
    font-size: 14px;
    color: var(--text-light);
    border-radius: 2px;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
}

.about-intro {
    text-align: center;
    padding: 60px 0 40px;
}

.about-intro h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: normal;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 2px;
    background-color: var(--background-light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: normal;
    color: var(--primary-color);
}

.contact-page {
    padding: 60px 0;
}

.contact-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: normal;
    text-align: center;
}

.contact-details {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--background-light);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: normal;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: normal;
}

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

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    font-weight: normal;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 32px;
}

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

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: normal;
    color: var(--primary-color);
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-button {
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.cookie-accept:hover {
    background-color: #1f4438;
}

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

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

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

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

    .story-text h2 {
        font-size: 28px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

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

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

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

    .cookie-button {
        width: 100%;
    }
}
