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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --border-color: #e1e8ed;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    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;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: #2980b9;
}

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

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

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: var(--background-light);
}

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

.hero-editorial {
    margin-bottom: 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.story-section {
    margin: 3rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.story-section li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.editorial-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.editorial-image-small {
    margin: 2rem auto;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.inline-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
}

.inline-cta:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-inline {
    background: var(--background-light);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.highlight-section {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.insights-list {
    margin-top: 2rem;
}

.insight-item {
    margin-bottom: 2rem;
}

.insight-item:last-child {
    margin-bottom: 0;
}

.insight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.services-editorial {
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-select:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-detailed {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-card-detailed.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-includes,
.service-process {
    margin: 2rem 0;
}

.service-includes h3,
.service-process h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-detailed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section {
    background: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.simple-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.simple-list a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promise-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--background-light);
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1.05rem;
}

.thanks-page {
    text-align: center;
}

.thanks-page .story-section {
    text-align: left;
}

.legal-page .story-section {
    margin: 2rem 0;
}

.legal-page h2 {
    margin-top: 2.5rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.6rem;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 1.5rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: var(--transition);
}

.sticky-cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3rem;
    }

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

    .story-section h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 250px;
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 767px) {
    .nav-container {
        justify-content: center;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .story-section h2 {
        font-size: 1.5rem;
    }

    .ad-label {
        width: 100%;
        text-align: center;
    }
}