:root {
    --primary: #2c5282;
    --primary-dark: #1a365d;
    --accent: #ed8936;
    --accent-hover: #dd6b20;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #1a202c;
    --border: #e2e8f0;
    --success: #48bb78;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.7;
    background-color: var(--bg);
}

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

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

.ad-disclosure {
    background-color: var(--bg-alt);
    padding: 8px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

header {
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.nav-cta {
    background-color: var(--accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-cta:hover {
    background-color: var(--accent-hover);
}

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

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-container {
    margin: 48px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.hero-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-section {
    padding: 64px 0;
}

.story-section.alt-bg {
    background-color: var(--bg-alt);
}

.story-section h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.story-section h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 17px;
}

.inline-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.inline-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    background-color: var(--bg-alt);
}

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

.cta-inline h3 {
    color: white;
    margin-bottom: 16px;
}

.cta-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

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

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

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

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

.btn-white:hover {
    background-color: var(--bg-alt);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card-image {
    height: 180px;
    background-color: var(--bg-alt);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-submit:hover {
    background-color: var(--accent-hover);
}

.testimonials-section {
    padding: 64px 0;
}

.testimonial {
    background-color: var(--bg-alt);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent);
}

.testimonial blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text);
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 360px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-info {
    padding: 64px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1 1 200px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
}

footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 64px 0 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    background-color: var(--bg-alt);
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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-content p {
    flex: 1 1 400px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header {
    background-color: var(--bg-alt);
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

.legal-content {
    padding: 64px 0;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 32px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-content h1 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

.features-list {
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-text h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-light);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
    padding: 32px;
    background-color: var(--bg-alt);
    border-radius: 12px;
}

.stat-item {
    flex: 1 1 150px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

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

    .hero-image-container img {
        height: 280px;
    }

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

    .about-image {
        flex: none;
        width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

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