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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #e8a547;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
    --accent-red: #c74a4a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

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

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image-inline {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.story-intro,
.problem-section,
.insight-reveal,
.trust-building,
.method-reveal,
.urgency-section,
.final-push {
    margin-bottom: 3rem;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.narrow-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--text-dark);
    font-weight: 700;
}

.narrow-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 2rem 0;
}

.story-list {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.story-list li {
    margin-bottom: 0.8rem;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-text-cta {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.btn-text-cta:hover {
    color: var(--secondary-color);
}

.cta-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonials-inline {
    margin: 3rem 0;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.method-steps {
    margin: 2rem 0;
}

.method-step {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}

.method-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-sticky-trigger {
    text-align: center;
    margin: 3rem 0;
}

.services-preview {
    margin: 4rem 0;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.service-card.featured {
    border-color: var(--secondary-color);
    background-color: #fffbf5;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background-color: #234a3d;
}

.additional-services {
    margin-top: 3rem;
}

.extra-service {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.extra-service h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.price-small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 1rem;
}

.btn-text-small {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.btn-text-small:hover {
    color: var(--secondary-color);
}

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

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.final-note {
    text-align: center;
    margin: 3rem 0;
}

.small-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    transition: all 0.3s;
}

.sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
}

.btn-sticky {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #a83d3d;
    transform: scale(1.05);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 0.95rem;
    color: #b0b0b0;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.update-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.about-page,
.services-page,
.contact-page,
.legal-page,
.thanks-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.mission-section,
.values-section,
.team-section,
.results-section,
.cta-about {
    margin-bottom: 3rem;
}

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

.big-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin: 2rem 0;
}

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

.service-detail {
    margin-bottom: 4rem;
    position: relative;
}

.service-detail.featured {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-list {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.service-list li {
    margin-bottom: 0.8rem;
}

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

.extra-service-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.extra-service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.extra-service-item ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.extra-service-item ul li {
    margin-bottom: 0.5rem;
}

.how-it-works {
    margin: 3rem 0;
}

.process-step {
    margin-bottom: 2rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.faq-item {
    margin-bottom: 2.5rem;
}

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

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

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section ul li {
    margin-bottom: 0.7rem;
}

.thanks-section {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem auto;
    max-width: 700px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.service-text {
    font-size: 1.1rem;
}

.thanks-cta {
    margin: 3rem 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.email-check {
    margin-top: 3rem;
}

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .narrow-text h2 {
        font-size: 1.6rem;
    }

    .intro-paragraph {
        font-size: 1.1rem;
    }

    body {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .next-steps {
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }
}