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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #718096;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #e2e8f0;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #2b6cb0;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-editorial {
    position: relative;
    margin: 0 -30px 60px;
    background-color: #1a202c;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 800;
    max-width: 600px;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1a202c;
}

.header-subtitle {
    font-size: 20px;
    color: #718096;
    font-weight: 400;
}

.story-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 500;
}

.story-content {
    margin-bottom: 50px;
}

.story-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

.story-content h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a202c;
}

.story-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2d3748;
}

.inline-visual {
    margin: 60px -30px;
    background-color: #f7fafc;
}

.inline-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-block {
    background-color: #ebf8ff;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #3182ce;
}

.insight-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a365d;
    font-weight: 700;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #2c5282;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2d3748;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #718096;
    font-weight: 600;
}

.services-cards {
    margin: 50px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.service-duration {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2b6cb0;
    margin: 20px 0;
}

.btn-service {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background-color: #2c5282;
}

.cta-inline {
    background-color: #2d3748;
    color: #ffffff;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 0;
}

.cta-link {
    color: #63b3ed;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #90cdf4;
}

.form-editorial {
    background-color: #f7fafc;
    padding: 50px 40px;
    margin: 60px 0;
}

.form-editorial h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 16px;
}

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

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

.form-group input[readonly] {
    background-color: #edf2f7;
    color: #2d3748;
}

.btn-submit {
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px 40px;
    background-color: #fffaf0;
    border-left: 4px solid: #dd6b20;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #744210;
}

.footer-editorial {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 30px;
    margin-top: 80px;
    margin-left: -30px;
    margin-right: -30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #63b3ed;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

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

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

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

.services-grid {
    margin: 50px 0;
}

.service-detailed {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    margin-bottom: 50px;
    overflow: hidden;
}

.service-header {
    padding: 35px 40px 20px;
}

.service-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a202c;
    font-weight: 800;
}

.service-tagline {
    font-size: 18px;
    color: #718096;
    font-weight: 500;
}

.service-image {
    width: 100%;
    background-color: #f7fafc;
}

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

.service-body {
    padding: 30px 40px 40px;
}

.service-body p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.service-body h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a202c;
}

.service-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-body ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.service-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.service-details {
    margin: 30px 0;
    padding: 25px;
    background-color: #f7fafc;
}

.service-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.price-highlight {
    font-size: 36px;
    font-weight: 800;
    color: #2b6cb0;
    margin-top: 15px;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    background-color: #f7fafc;
    padding: 30px;
    border-left: 4px solid #3182ce;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 800;
}

.thanks-info {
    background-color: #ebf8ff;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #3182ce;
}

.thanks-info p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.thanks-info ul {
    list-style: none;
    margin: 20px 0;
}

.thanks-info ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #2c5282;
}

.thanks-info ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3182ce;
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    margin: 50px 0;
}

.thanks-actions h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a202c;
}

.thanks-actions p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a5568;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.btn-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

.step-item {
    background-color: #f7fafc;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #4299e1;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.reminder-box {
    background-color: #fffaf0;
    padding: 25px;
    margin: 40px 0;
    border-left: 4px solid #dd6b20;
}

.reminder-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #744210;
    margin: 0;
}

.legal-page {
    max-width: 900px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5282;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

    .hero-editorial {
        margin: 0 -20px 40px;
    }

    .hero-overlay {
        padding: 30px 20px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .story-content h2 {
        font-size: 26px;
    }

    .inline-visual {
        margin: 40px -20px;
    }

    .footer-editorial {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .thanks-links {
        flex-direction: column;
    }

    .btn-secondary {
        text-align: center;
    }
}