* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #c0392b;
}

.navbar {
    background-color: #34495e;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.ad-disclosure {
    background-color: #e67e22;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-editorial {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #34495e;
}

.hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #ffffff;
    border-radius: 0 0 8px 8px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.story-intro {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-content {
    line-height: 1.8;
}

.story-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.story-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.benefit-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.benefit-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.visual-break {
    margin: 3rem 0;
}

.section-image,
.content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #95a5a6;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.inline-visual {
    margin: 2.5rem 0;
}

.inline-cta {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
}

.inline-cta.centered {
    text-align: center;
}

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: #3498db;
}

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

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

.service-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1rem;
    color: #34495e;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #27ae60;
    margin: 1rem 0;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #e67e22;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 0.5rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

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

.form-section h2 {
    margin-bottom: 1rem;
}

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

.form-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    color: #856404;
    display: none;
}

.form-notice.show {
    display: block;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.cta-section-editorial {
    background-color: #3498db;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section-editorial h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-editorial p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.cta-button:hover {
    background-color: #ecf0f1;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.service-detailed {
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 2rem;
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content-wrapper {
    margin-top: 1rem;
}

.service-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-text li {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

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

.contact-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    margin: 0;
    line-height: 1.7;
}

.location-section {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-section {
    padding: 2rem 0;
}

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

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

.thanks-details {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    color: #155724;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}