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

:root {
    --primary: #2C3E50;
    --secondary: #E74C3C;
    --accent: #3498DB;
    --text: #333333;
    --light-bg: #F8F9FA;
    --border: #E1E8ED;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text);
    background: #FFFFFF;
}

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

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

header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #888;
    font-style: italic;
    padding: 4px 8px;
    background: #F5F5F5;
    border-radius: 3px;
}

.hero-editorial {
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-editorial .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.article-content {
    padding: 40px 20px;
}

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

.article-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: var(--primary);
    font-weight: 400;
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 15px;
    color: var(--primary);
    font-weight: 400;
}

.inline-image {
    margin: 40px 0;
    width: 100%;
    background-color: #F0F0F0;
}

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

.inline-image figcaption {
    font-size: 14px;
    color: #777;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

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

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

.cta-inline p {
    margin-bottom: 20px;
    font-size: 16px;
}

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

.btn:hover {
    background: #2980B9;
}

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

.btn-secondary:hover {
    background: #C0392B;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    padding: 30px;
    margin: 30px 0;
}

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

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

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.testimonial {
    background: var(--light-bg);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary);
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial cite {
    display: block;
    font-size: 14px;
    color: #777;
    font-style: normal;
    margin-top: 10px;
}

.form-section {
    background: var(--light-bg);
    padding: 50px 20px;
    margin: 60px 0;
}

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

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

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

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

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

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

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

footer {
    background: var(--primary);
    color: #FFFFFF;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    text-decoration: underline;
}

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

.disclaimer {
    background: #FFF9E6;
    border: 1px solid #FFE066;
    padding: 20px;
    margin: 40px 0;
    font-size: 14px;
    color: #666;
}

.reference-list {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.reference-list h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

.reference-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #FFFFFF;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

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

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.page-header {
    background: var(--light-bg);
    padding: 60px 20px;
    text-align: center;
}

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

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

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

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary);
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-info {
    background: var(--light-bg);
    padding: 30px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
}

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-editorial h1 {
        font-size: 32px;
    }

    .article-content h2 {
        font-size: 26px;
    }

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

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