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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f1f1f1;
    --text: #333;
    --text-light: #666;
    --white: #ffffff;
}

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

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

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

header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .editorial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

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

nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-editorial .subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    font-style: italic;
    margin-bottom: 40px;
}

.hero-editorial .byline {
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: 'Arial', sans-serif;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

.section-editorial {
    padding: 60px 0;
}

.section-editorial h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 400;
}

.section-editorial h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    font-weight: 400;
}

.section-editorial p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.section-editorial ul,
.section-editorial ol {
    margin: 25px 0 25px 30px;
    font-size: 1.1rem;
}

.section-editorial li {
    margin-bottom: 15px;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
}

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

.inline-image figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.pullquote {
    margin: 50px 0;
    padding: 30px 40px;
    background: var(--light);
    border-left: 5px solid var(--accent);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
}

.pullquote cite {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.cta-inline {
    margin: 50px 0;
    padding: 40px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
}

.cta-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-inline p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    margin: 0 0 15px 0;
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.section-dark {
    background: var(--secondary);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.stats-grid {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.service-card {
    margin-bottom: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.service-card .price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text);
}

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

.service-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

.form-container {
    margin: 50px 0;
    padding: 50px;
    background: var(--light);
    border-radius: 8px;
}

.form-container h3 {
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

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

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

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

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background: var(--light);
    border-radius: 8px;
    position: relative;
}

.testimonial-inline:before {
    content: """;
    font-size: 5rem;
    position: absolute;
    top: 20px;
    left: 30px;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.image-gallery {
    display: flex;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.image-gallery img {
    flex: 1;
    min-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

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

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

.cookie-actions button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 8px;
}

.contact-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary);
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

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

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    nav ul.active {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .section-editorial h2 {
        font-size: 1.8rem;
    }

    .pullquote {
        padding: 20px;
        font-size: 1.2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

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

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

    .stats-grid {
        flex-direction: column;
    }
}

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

    .section-editorial p,
    .section-editorial ul,
    .section-editorial ol {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}