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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --light: #ecf0f1;
    --dark: #34495e;
    --text: #2c3e50;
    --bg: #ffffff;
    --border: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 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 24px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

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

.hero-editorial h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-editorial .subtitle {
    font-size: 22px;
    color: #7f8c8d;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-image-container {
    width: 100%;
    height: 420px;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #95a5a6;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.article-section {
    margin-bottom: 60px;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.article-section h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--dark);
    font-weight: 600;
}

.article-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-section ul {
    margin: 24px 0;
    padding-left: 28px;
}

.article-section li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.inline-image {
    width: 100%;
    max-width: 680px;
    height: 380px;
    margin: 40px auto;
    border-radius: 6px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.inline-cta {
    background: linear-gradient(135deg, var(--secondary), #c0392b);
    color: white;
    padding: 36px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
}

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

.inline-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.service-card li {
    font-size: 15px;
    margin-bottom: 8px;
}

.testimonial {
    background: #f8f9fa;
    padding: 32px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial .author {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
    font-style: normal;
}

.contact-form {
    background: white;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

.submit-button {
    background: var(--secondary);
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.disclaimer {
    background: #fff9e6;
    border: 1px solid #f39c12;
    padding: 24px;
    border-radius: 6px;
    margin: 48px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.references h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.references ol {
    padding-left: 24px;
}

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

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

.references a:hover {
    text-decoration: underline;
}

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

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

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

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

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

.thanks-container p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #7f8c8d;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.thanks-container .back-link:hover {
    text-decoration: underline;
}

.page-header {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
}

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

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

.page-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.page-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

.page-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.contact-info {
    background: white;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

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

.contact-info p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info strong {
    color: var(--dark);
}

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

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

    .article-section h2 {
        font-size: 28px;
    }

    .article-section p {
        font-size: 16px;
    }

    nav {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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