/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3524;
}

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #e8e6e3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #2d5a3d;
    letter-spacing: 0.5px;
}

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

.nav-menu li a {
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #4a4a4a;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2d5a3d;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2a2a2a;
    transition: all 0.3s;
}

/* Editorial Container */
.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 10%;
    left: 5%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    border-left: 5px solid #2d5a3d;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 400;
}

/* Text Sections */
.text-section-narrow {
    max-width: 680px;
    margin: 4rem auto;
    padding: 0 5%;
}

.intro-large {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.text-section-narrow h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

.text-section-narrow em {
    font-style: italic;
    color: #2d5a3d;
}

.text-section-narrow ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-section-narrow li {
    margin-bottom: 0.7rem;
}

.benefit-list {
    list-style: none;
    margin-left: 0;
}

.benefit-list li:before {
    content: "✓ ";
    color: #2d5a3d;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Inline Images */
.inline-image-block {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
}

.inline-image-block img {
    width: 100%;
    border-radius: 3px;
}

.inline-image-block.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

.image-caption {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 0.8rem;
    font-style: italic;
    text-align: center;
}

/* CTA Inline */
.cta-inline {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 5%;
    text-align: center;
}

.cta-link {
    font-size: 1.2rem;
    color: #2d5a3d;
    font-weight: 600;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid #2d5a3d;
}

.cta-link:hover {
    border-bottom-color: #1a3524;
}

/* Highlight Section */
.highlight-section {
    background: #f7f6f4;
    padding: 2.5rem 3rem !important;
    border-left: 4px solid #2d5a3d;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.insight-box {
    background: #fff;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid #d4a574;
}

.insight-box strong {
    color: #2d5a3d;
}

/* Testimonials */
.testimonial-block {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2.5rem 5%;
    background: #2d5a3d;
    color: #fff;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.testimonial-block.alternate {
    background: #4a6b52;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 5%;
    background: #f7f6f4;
    border-top: 3px solid #2d5a3d;
    border-bottom: 3px solid #2d5a3d;
}

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

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 0.95rem;
    color: #5a5a5a;
}

/* Services Editorial */
.services-editorial {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 5%;
}

.service-card-editorial {
    margin-bottom: 4rem;
    background: #fff;
    border: 1px solid #e8e6e3;
    overflow: hidden;
    position: relative;
}

.service-card-editorial.featured {
    border: 3px solid #2d5a3d;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2d5a3d;
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-details {
    margin: 2rem 0;
}

.service-details h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #2d5a3d;
}

.service-details ul {
    margin-left: 1.3rem;
    margin-bottom: 1rem;
}

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

.course-details {
    list-style: none;
    margin-left: 0;
}

.course-details li {
    padding-left: 0;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background: #f7f6f4;
    border-left: 4px solid #2d5a3d;
}

.price-label {
    font-size: 1rem;
    color: #5a5a5a;
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    color: #2d5a3d;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: #2d5a3d;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a3524;
}

/* Urgency Section */
.urgency-section {
    background: #fff9f0;
    border: 2px solid #d4a574;
    padding: 2rem 2.5rem !important;
}

.urgency-text {
    font-size: 1.2rem;
    color: #c7511f;
    font-weight: 600;
}

/* Form Section */
.form-section-editorial {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 5%;
    background: #f7f6f4;
    border-top: 5px solid #2d5a3d;
}

.form-section-editorial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

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

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

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #d8d6d2;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.btn-submit {
    padding: 1.2rem 2rem;
    background: #2d5a3d;
    color: #fff;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1a3524;
}

/* Sticky CTA */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d5a3d;
    padding: 1rem 5%;
    display: none;
    z-index: 99;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
}

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

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.9rem 2rem;
    background: #fff;
    color: #2d5a3d;
    font-weight: bold;
    border-radius: 3px;
    transition: transform 0.2s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

/* Final Section */
.final-section {
    text-align: center;
    background: #fff;
    padding: 3rem 5% !important;
    margin-top: 5rem;
    margin-bottom: 3rem;
    border-top: 3px solid #2d5a3d;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 5% 1.5rem;
    margin-top: 5rem;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-accept {
    background: #2d5a3d;
    color: #fff;
}

.btn-accept:hover {
    background: #1a3524;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 5% 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-style: italic;
}

/* Team Section */
.team-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 5%;
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    max-width: 320px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2d5a3d;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 1rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Philosophy List */
.philosophy-list {
    list-style: none;
    margin-left: 0;
}

.philosophy-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

/* Stats Visual */
.stats-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 5%;
    justify-content: center;
}

.stat-card {
    background: #2d5a3d;
    color: #fff;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    flex: 1;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
}

/* CTA Section Centered */
.cta-section-centered {
    text-align: center;
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 5%;
    background: #f7f6f4;
    border-top: 4px solid #2d5a3d;
}

.cta-section-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a3d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1a3524;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #2d5a3d;
    color: #fff;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 5%;
}

.contact-info-section {
    flex: 1;
}

.contact-map-section {
    flex: 1;
}

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

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

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

.contact-item .note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 2px solid #e8e6e3;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 61, 0.9);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e6e3;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2d5a3d;
}

.faq-item p {
    line-height: 1.7;
}

/* Thanks Page */
.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 5%;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    background: #f7f6f4;
    padding: 4rem 3rem;
    border-top: 5px solid #2d5a3d;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-message .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
    font-weight: 600;
}

.service-info {
    margin: 2rem 0;
}

.selected-service-box {
    background: #fff;
    padding: 2rem;
    border-left: 4px solid #2d5a3d;
    margin: 2rem 0;
}

.selected-service-box h2 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2d5a3d;
}

.service-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a1a;
}

.next-steps {
    text-align: left;
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tips-section {
    background: #fff;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.tips-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2d5a3d;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.contact-info-box {
    background: #fff;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid #d4a574;
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5% 3rem;
}

.legal-date {
    font-size: 1rem;
    color: #6a6a6a;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    color: #2d5a3d;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.9rem;
    text-align: left;
    border: 1px solid #e8e6e3;
}

.cookie-table th {
    background: #f7f6f4;
    font-weight: 600;
    color: #2a2a2a;
}

.cookie-table td {
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 5%;
        border-bottom: 1px solid #e8e6e3;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-overlay {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1.5rem;
    }

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

    .text-section-narrow {
        margin: 2.5rem auto;
    }

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

    .intro-large {
        font-size: 1.15rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

    .service-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-editorial {
        height: 60vh;
    }

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

    .service-content {
        padding: 1.5rem;
    }

    .form-section-editorial {
        padding: 2rem 5%;
    }
}