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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-cta {
    display: flex;
}

.btn-primary-small {
    padding: 0.7rem 1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary-small:hover {
    background: #2980b9;
}

.hero-editorial {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 3rem 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.85);
}

.hero-content-narrow {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.editorial-flow {
    background: #ffffff;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 2rem;
    font-weight: 500;
}

.editorial-flow p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #4a5568;
}

.editorial-flow h2 {
    font-size: 2.2rem;
    margin: 3.5rem 0 1.5rem;
    color: #2c3e50;
    font-weight: 800;
    line-height: 1.3;
}

.editorial-flow h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: #34495e;
    font-weight: 700;
}

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

.article-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.inline-cta-box {
    background: #f8f9fa;
    border-left: 5px solid #3498db;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.inline-cta-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

.inline-cta-box p {
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #2980b9;
}

.pillar-section {
    background: #ecf0f1;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.pillar-section h3 {
    margin-top: 0;
    color: #2c3e50;
}

.testimonial-inline {
    margin: 3.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
}

.testimonial-inline blockquote {
    color: white;
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: #ecf0f1;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
}

.service-card h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.6rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service-select {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service-select:hover {
    background: #2980b9;
}

.service-card.selected {
    border-color: #27ae60;
    background: #f0fdf4;
}

.service-card.selected .btn-service-select {
    background: #27ae60;
}

.service-selected-indicator {
    background: #d4edda;
    border: 2px solid #27ae60;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 6px;
    text-align: center;
}

.service-selected-indicator p {
    margin-bottom: 0.5rem;
}

.stats-inline {
    display: flex;
    justify-content: space-around;
    margin: 3.5rem 0;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
}

.form-section-editorial {
    background: #2c3e50;
    padding: 3rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.form-section-editorial h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 2rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ecf0f1;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #34495e;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-primary-large {
    padding: 1.3rem 3rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.final-note {
    margin-top: 4rem;
    font-size: 1.1rem;
    text-align: center;
    color: #5a6c7d;
    font-style: italic;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-service-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.services-intro {
    max-width: 750px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.about-page p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .content-narrow {
        padding: 3rem 1.5rem;
    }

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

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

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

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

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