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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a9fd8;
    --accent-color: #e8554e;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border-color: #dfe6e9;
}

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

header {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-editorial {
    padding: 5rem 0 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-editorial .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-editorial .byline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
    margin-bottom: 3rem;
}

.article-content {
    padding: 3rem 0;
}

.article-content p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 400;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.inline-image {
    margin: 3rem 0;
}

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

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

.pullquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.6;
}

.cta-inline {
    background: var(--light-bg);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.cta-inline h3 {
    margin: 0 0 1rem;
    color: var(--text-dark);
}

.cta-inline p {
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
    background: #d14842;
    transform: translateY(-2px);
}

.services-editorial {
    background: var(--light-bg);
    padding: 4rem 0;
    margin: 4rem 0;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-item h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-item p {
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Arial', sans-serif;
}

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

.testimonial-box {
    background: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial-box p {
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.form-section {
    background: var(--white);
    padding: 3rem 0;
    margin: 3rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta p {
    margin: 0 0 0.8rem;
    font-family: 'Arial', sans-serif;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 3rem 0;
    margin: 3rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    text-align: center;
}

.urgency-box p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #856404;
}

footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--border-color);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: var(--secondary-color);
}

.cookie-reject {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: #b2bec3;
}

.image-grid {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.image-grid img {
    flex: 1;
    min-width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.highlight-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.highlight-section h2 {
    color: var(--white);
}

.about-intro {
    padding: 3rem 0;
}

.team-values {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.value-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

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

.contact-info p {
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.thanks-container {
    text-align: center;
    padding: 5rem 2rem;
}

.thanks-container h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.policy-content {
    padding: 3rem 0;
}

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

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.policy-content p {
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

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

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

    .article-content p {
        font-size: 1rem;
    }

    .pullquote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }

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

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

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

    .sticky-cta {
        padding: 0.8rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}
