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

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #d4a574;
    --text: #34495e;
    --light: #ecf0f1;
    --bg: #fdfbf8;
    --white: #ffffff;
}

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

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 12px;
    color: #888;
    border-left: 2px solid #ddd;
    padding-left: 15px;
}

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

.hero-editorial h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
}

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

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

.article-content p {
    margin-bottom: 28px;
    text-align: justify;
}

.article-content h2 {
    font-size: 36px;
    margin: 60px 0 30px;
    color: var(--primary);
    font-weight: 400;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary);
    font-weight: 400;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f3f0;
}

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

.inline-cta {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 30px 40px;
    margin: 50px 0;
}

.inline-cta h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: var(--primary);
}

.inline-cta p {
    margin-bottom: 20px;
    text-align: left;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    font-family: inherit;
}

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

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

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

.services-list {
    margin: 60px 0;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0ddd9;
}

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

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

.service-header h3 {
    font-size: 28px;
    color: var(--primary);
    margin: 0;
    font-weight: 400;
}

.price {
    font-size: 24px;
    color: var(--accent);
    font-weight: 700;
}

.service-item p {
    margin-bottom: 15px;
}

.service-item .btn {
    margin-top: 10px;
}

.form-section {
    background: var(--white);
    padding: 60px 40px;
    margin: 60px 0;
    border: 1px solid #e0ddd9;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg);
}

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

.form-actions {
    text-align: center;
    margin-top: 30px;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--accent);
}

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

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

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--light);
}

.disclaimer {
    background: #fff9f0;
    border: 1px solid #f0e6d2;
    padding: 30px;
    margin: 50px 0;
    font-size: 15px;
    line-height: 1.6;
}

.disclaimer strong {
    color: var(--secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent);
    padding: 25px 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-actions button {
    padding: 10px 24px;
    border: 1px solid var(--secondary);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.cookie-actions button.accept {
    background: var(--secondary);
    color: var(--white);
}

.cookie-actions button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.about-section {
    margin: 60px 0;
}

.about-image {
    margin: 40px 0;
    background-color: #f5f3f0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #e0ddd9;
}

.contact-info h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-label {
    font-weight: 600;
    color: var(--secondary);
}

.legal-content {
    padding: 60px 0;
    line-height: 1.9;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

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

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

.legal-content ul {
    margin: 20px 0 20px 40px;
}

.legal-content li {
    margin-bottom: 10px;
}

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

.thanks-message h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
}

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

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

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

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

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