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

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

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

header {
    padding: 40px 20px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.logo {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

nav {
    max-width: 680px;
    margin: 25px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

nav a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #2563eb;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-editorial .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 35px;
    font-weight: 300;
}

.article-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin: 50px auto;
    display: block;
    border-radius: 3px;
}

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

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.content-block h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.inline-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 1rem;
    transition: background 0.3s;
}

.inline-cta:hover {
    background: #1d4ed8;
}

.service-card {
    background: #f9fafb;
    padding: 35px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
    border-radius: 2px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 15px 0;
}

.service-card .duration {
    color: #666;
    font-size: 0.95rem;
}

.form-section {
    background: #fff;
    padding: 60px 20px;
    margin: 60px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.testimonial {
    background: #f0f9ff;
    padding: 30px;
    margin: 40px 0;
    border-radius: 3px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #2563eb;
}

footer {
    background: #1a1a1a;
    color: #e8e8e8;
    padding: 60px 20px 40px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.footer-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 25px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
}

.cookie-accept {
    background: #2563eb;
    color: #fff;
}

.cookie-reject {
    background: #6b7280;
    color: #fff;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563eb;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s;
    z-index: 999;
}

.sticky-cta:hover {
    transform: translateY(-2px);
}

.contact-info {
    background: #f9fafb;
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
}

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

.contact-info p {
    margin: 10px 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

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

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0 15px 30px;
}

.policy-content li {
    margin: 8px 0;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2563eb;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

    .hero-editorial .subtitle {
        font-size: 1.1rem;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 25px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    nav {
        gap: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
