* {
    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;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: #66b3ff;
    color: #ffffff;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #3399ff;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #666;
    color: #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background: #333;
}

.header-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-main {
    display: flex;
    gap: 32px;
}

.nav-main a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f9f9f9;
}

.editorial-layout {
    padding-top: 60px;
}

.hero-editorial {
    margin-bottom: 80px;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.editorial-image {
    margin: 48px 0;
    background: #f5f5f5;
}

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

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

.content-section.bg-light {
    background: #fafafa;
}

.content-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.content-section a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.content-section a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.split-insight {
    padding: 80px 0;
    background: #f0f4f8;
}

.insight-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-visual {
    flex: 1;
    background: #e0e7ef;
}

.insight-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-cta {
    margin-top: 48px;
    padding: 32px;
    background: #ffffff;
    border-left: 4px solid #3498db;
}

.inline-cta p {
    margin-bottom: 16px;
    font-size: 19px;
}

.btn-inline {
    display: inline-block;
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

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

.editorial-image-inline {
    margin: 40px 0;
    background: #f5f5f5;
}

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

.testimonial-inline {
    padding: 60px 0;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3498db;
    padding-left: 32px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 16px;
    color: #bdc3c7;
}

.services-editorial {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-editorial {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 32px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #1a252f;
}

.service-card-editorial.selected {
    border-color: #3498db;
    box-shadow: 0 0 0 2px #3498db;
}

.form-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-form {
    margin-top: 40px;
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #7f8c8d;
}

.btn-submit {
    padding: 14px 40px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-submit:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.references-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 24px;
    background: #0f0f0f;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 3px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-content .btn-inline {
    margin-top: 32px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-page {
    padding: 80px 0;
}

.contact-info {
    margin-top: 40px;
    max-width: 600px;
}

.contact-info-item {
    margin-bottom: 32px;
    padding: 24px;
    background: #f9f9f9;
    border-left: 4px solid #3498db;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-info-item p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.services-page {
    padding: 80px 0;
}

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

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

.about-content {
    margin-top: 40px;
}

.about-image {
    margin: 40px 0;
    background: #f5f5f5;
}

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

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

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

    .insight-wrapper {
        flex-direction: column;
    }

    .nav-main {
        gap: 16px;
        font-size: 14px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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