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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

a {
    color: #3a6b5c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #234d3f;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: #555;
}

.nav-links a:hover {
    color: #3a6b5c;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #c9b8a8;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

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

.story-intro {
    padding: 80px 0 60px 0;
    background-color: #fff;
}

.intro-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #3a3a3a;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.insight-block {
    padding: 70px 0;
    background-color: #f9f7f4;
}

.insight-block h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 400;
    color: #2a2a2a;
}

.insight-block p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.inline-image-right {
    float: right;
    margin: 0 0 30px 40px;
    max-width: 400px;
    background-color: #d8cfc4;
}

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

.inline-image-left {
    float: left;
    margin: 0 40px 30px 0;
    max-width: 400px;
    background-color: #d8cfc4;
}

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

.problem-amplify {
    padding: 70px 0;
    background-color: #fff;
}

.problem-amplify h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 400;
    color: #2a2a2a;
}

.problem-amplify p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.solution-reveal {
    padding: 70px 0;
    background-color: #f4f0ec;
}

.solution-reveal h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 400;
    color: #2a2a2a;
}

.solution-reveal p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.trust-builder {
    padding: 70px 0;
    background-color: #fff;
}

.trust-builder h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.testimonial-inline {
    margin: 30px 0;
    padding: 25px 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #3a6b5c;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.services-preview {
    padding: 70px 0;
    background-color: #f9f7f4;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2a2a2a;
}

.services-preview p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.service-cards-editorial {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 360px;
    background-color: #fff;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    background-color: #fcfcfc;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 15px 20px;
    font-weight: 500;
    color: #2a2a2a;
}

.service-card p {
    font-size: 1rem;
    margin: 0 20px 15px 20px;
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3a6b5c;
    margin: 15px 20px;
}

.btn-select-service,
.btn-submit,
.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #3a6b5c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    margin: 15px 20px 20px 20px;
}

.btn-select-service:hover,
.btn-submit:hover,
.btn-cta:hover {
    background-color: #2d5447;
}

.form-section {
    padding: 70px 0;
    background-color: #fff;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2a2a2a;
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    font-size: 1.1rem;
    color: #3a6b5c;
    font-weight: 500;
    padding: 10px 0;
}

.btn-submit {
    margin: 20px 0 0 0;
}

.final-cta {
    padding: 60px 0;
    background-color: #f4f0ec;
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
    color: #2a2a2a;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.references-section {
    padding: 50px 0;
    background-color: #fff;
}

.references-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2a2a2a;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.references-list a {
    color: #3a6b5c;
}

.footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 50px 20px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px 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 1 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #9fc9b8;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3a6b5c;
    color: #fff;
}

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

.btn-cookie-reject {
    background-color: #555;
    color: #fff;
}

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

.page-header {
    padding: 60px 20px 40px 20px;
    text-align: center;
    background-color: #f9f7f4;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
}

.services-full {
    padding: 60px 0;
    background-color: #fff;
}

.about-story {
    padding: 60px 0;
    background-color: #fff;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.philosophy {
    padding: 70px 0;
    background-color: #f9f7f4;
}

.philosophy h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.philosophy p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.selection-criteria {
    padding: 70px 0;
    background-color: #fff;
}

.selection-criteria h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.selection-criteria p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.why-premium {
    padding: 70px 0;
    background-color: #f4f0ec;
}

.why-premium h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.why-premium p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.commitment {
    padding: 70px 0;
    background-color: #fff;
}

.commitment h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.commitment p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.contact-info {
    padding: 60px 0;
    background-color: #fff;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: #2a2a2a;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 500;
    color: #3a6b5c;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 40px 0 60px 0;
    background-color: #f9f7f4;
}

.contact-note p {
    font-size: 1.05rem;
}

.thanks-content {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2a2a2a;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f7f4;
}

.service-confirmation p {
    font-size: 1.1rem;
}

.legal-page {
    background-color: #fff;
}

.legal-content {
    padding: 40px 0 80px 0;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
    font-weight: 500;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 500;
    color: #3a6b5c;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.approach-section {
    padding: 60px 0;
    background-color: #f9f7f4;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

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

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

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

    .inline-image-right,
    .inline-image-left {
        float: none;
        margin: 30px auto;
        max-width: 100%;
    }

    .service-cards-editorial {
        flex-direction: column;
        align-items: center;
    }

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

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