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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #2c3e50;
    background-color: #fafafa;
}

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

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

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    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 24px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

nav a {
    text-decoration: none;
    color: #34495e;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

nav a:hover {
    color: #3498db;
}

.hero-editorial {
    padding: 80px 0 60px;
    background-color: #ffffff;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 400;
}

.hero-editorial .subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
    color: #1a252f;
}

.content-section h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 400;
    color: #2c3e50;
}

.content-section p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #34495e;
}

.inline-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 26px;
    margin-bottom: 16px;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cta-inline {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s;
    margin-top: 16px;
    cursor: pointer;
    border: none;
}

.cta-inline:hover {
    background-color: #2980b9;
}

.cta-block {
    background-color: #ecf0f1;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
    border-radius: 4px;
}

.cta-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
}

.form-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
    margin: 60px 0;
    border-radius: 4px;
}

.form-section h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
}

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

.testimonial {
    background-color: #ffffff;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 16px;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 40px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer {
    background-color: #fff9e6;
    border: 1px solid #f0e5c0;
    padding: 24px;
    margin: 40px 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.2s;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 400;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.contact-info {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 400;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #34495e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-info strong {
    color: #2c3e50;
}

.thanks-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 48px;
    border-radius: 4px;
    text-align: center;
    margin: 80px 0;
}

.thanks-message h1 {
    font-size: 38px;
    color: #155724;
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-message p {
    font-size: 18px;
    color: #155724;
    line-height: 1.7;
}

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

    nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

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

    .cookie-banner.active {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }
}