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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #d4145a;
    --accent-color: #fbb034;
    --text-color: #2d2d2d;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --gray: #666;
    --dark-gray: #333;
}

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

.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);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

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

.logo {
    font-size: 24px;
    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;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-editorial .subtitle {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-style: italic;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}

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

.content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: normal;
}

.content-section h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    line-height: 1.4;
    font-weight: normal;
}

.content-section p {
    margin-bottom: 25px;
    text-align: justify;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

.pullquote {
    font-size: 28px;
    font-style: italic;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-bg);
    line-height: 1.5;
}

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

.inline-cta h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.inline-cta p {
    margin: 0 0 20px 0;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--light-bg);
    padding: 40px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    margin: 0 0 15px 0;
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: 20px;
    text-align: left;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

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

.testimonial-author {
    font-weight: bold;
    margin-top: 20px;
    font-style: normal;
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 18px;
}

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

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

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

.footer-section a:hover {
    color: var(--accent-color);
}

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

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

.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-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.accept-cookies {
    background: var(--accent-color);
    color: var(--primary-color);
}

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

.highlight-box {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
}

.two-column {
    display: flex;
    gap: 40px;
    margin: 50px 0;
}

.column {
    flex: 1;
}

.contact-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 15px 0;
    text-align: left;
}

.policy-content h2 {
    margin: 40px 0 20px;
}

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

.policy-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

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

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

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

    nav ul.active {
        display: flex;
    }

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

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

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

    .pullquote {
        font-size: 22px;
        padding: 25px;
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .two-column {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}
