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

:root {
    --primary: #2c5f4f;
    --secondary: #8b6f47;
    --accent: #d4a574;
    --text: #2d2d2d;
    --light: #f7f4f1;
    --white: #ffffff;
    --gray: #6b6b6b;
}

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

.ad-label {
    background: var(--light);
    padding: 8px 16px;
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Arial', sans-serif;
}

header {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 28px;
    font-weight: normal;
    color: var(--primary);
    text-decoration: none;
    font-style: italic;
}

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

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

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

.hero-editorial {
    max-width: 780px;
    margin: 60px auto 0;
    padding: 0 30px;
}

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

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

.hero-image {
    width: 100%;
    height: 420px;
    background-color: var(--light);
    margin: 40px 0;
    object-fit: cover;
}

.content-editorial {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.content-editorial h2 {
    font-size: 34px;
    line-height: 1.4;
    margin: 60px 0 28px;
    font-weight: normal;
    color: var(--primary);
}

.content-editorial h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 48px 0 20px;
    font-weight: normal;
    color: var(--secondary);
}

.content-editorial p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text);
}

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

.cta-inline {
    background: var(--primary);
    color: var(--white);
    padding: 18px 42px;
    text-decoration: none;
    display: inline-block;
    margin: 32px 0;
    font-size: 17px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.cta-inline:hover {
    background: var(--secondary);
}

.highlight-box {
    background: var(--light);
    padding: 32px;
    margin: 48px 0;
    border-left: 4px solid var(--accent);
}

.services-editorial {
    margin: 64px 0;
}

.service-item {
    margin: 48px 0;
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.service-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-item .price {
    font-size: 24px;
    color: var(--secondary);
    margin: 12px 0 20px;
    font-weight: normal;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 16px;
}

.testimonial {
    font-style: italic;
    padding: 28px;
    margin: 56px 0;
    background: var(--white);
    border-left: 3px solid var(--accent);
    font-size: 19px;
}

.testimonial-author {
    margin-top: 16px;
    font-style: normal;
    color: var(--gray);
    font-size: 15px;
}

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

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary);
}

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

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

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

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

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

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

.reference-list {
    margin: 64px 0;
    padding-top: 32px;
    border-top: 2px solid #e8e8e8;
}

.reference-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text);
}

.reference-list ol {
    padding-left: 20px;
}

.reference-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.reference-list a {
    color: var(--primary);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
}

.disclaimer {
    background: #faf8f5;
    padding: 32px;
    margin: 64px 0;
    border: 1px solid #e0ddd8;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 48px 30px 32px;
    margin-top: 80px;
}

.footer-content {
    max-width: 780px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: normal;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    opacity: 0.8;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.cookie-accept:hover {
    background: var(--secondary);
}

.cookie-reject {
    background: #e0e0e0;
    color: var(--text);
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.legal-page {
    max-width: 780px;
    margin: 60px auto;
    padding: 0 30px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 28px;
    margin: 48px 0 20px;
    color: var(--secondary);
}

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-page {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 30px;
}

.contact-page h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--primary);
}

.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

.about-page {
    max-width: 780px;
    margin: 60px auto;
    padding: 0 30px;
}

.about-page h1 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary);
}

.about-page h2 {
    font-size: 30px;
    margin: 52px 0 24px;
    color: var(--secondary);
}

.about-page p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.services-page {
    max-width: 780px;
    margin: 60px auto;
    padding: 0 30px;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary);
}

.service-card {
    margin: 56px 0;
    padding: 48px 0;
    border-top: 1px solid #e0e0e0;
}

.service-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-card .price {
    font-size: 28px;
    color: var(--secondary);
    margin: 16px 0 24px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray);
}

.thanks-page {
    max-width: 680px;
    margin: 100px auto;
    padding: 0 30px;
    text-align: center;
}

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

.thanks-page p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--gray);
}

.thanks-page .cta-inline {
    margin-top: 40px;
}

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

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

    .content-editorial h2 {
        font-size: 28px;
    }

    .content-editorial h3 {
        font-size: 22px;
    }

    .content-editorial p {
        font-size: 17px;
    }

    nav ul {
        gap: 16px;
        font-size: 14px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

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

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

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