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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8872;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c44536;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.hero-image {
    margin-bottom: 4rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.editorial-intro {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.image-text-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-image {
    width: 100%;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.section-text {
    flex: 1;
}

.key-insight {
    background-color: #e8f3ef;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.key-insight h2 {
    color: var(--primary-color);
    margin-top: 0;
}

.services-inline {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

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

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.select-service {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.testimonials-editorial {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.closing-insight {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.main-footer {
    background-color: #1a2e28;
    color: #e0e0e0;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 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.6rem;
}

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

.footer-section a:hover {
    color: #ffffff;
    text-decoration: none;
}

.references {
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 1.2rem;
}

.references li {
    margin-bottom: 0.8rem;
}

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

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #a0a0a0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    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;
    gap: 2rem;
}

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-content {
    margin-top: 2rem;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.about-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-story {
    margin-bottom: 4rem;
}

.about-story img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.story-text {
    max-width: 700px;
}

.about-approach,
.about-team,
.about-philosophy,
.about-method,
.about-impact {
    max-width: 700px;
    margin: 4rem auto;
}

.about-team img,
.method-image img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.philosophy-list {
    list-style: none;
    padding-left: 0;
}

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

.philosophy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-page {
    background-color: var(--bg-white);
}

.services-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-image {
    width: 100%;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.6rem;
}

.service-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
}

.services-cta {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

.contact-page {
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info,
.contact-visual,
.contact-faq,
.contact-cta {
    margin-bottom: 4rem;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.contact-visual img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 2rem;
    background-color: var(--bg-light);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}

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

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

.contact-cta {
    text-align: center;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 4px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

.thanks-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem auto;
    max-width: 600px;
}

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

.next-steps-list {
    list-style: none;
    padding-left: 0;
}

.next-steps-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.next-steps-list li:last-child {
    border-bottom: none;
}

.next-steps-list li:before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: var(--primary-color);
    color: white;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    text-decoration: none;
}

.thanks-contact {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.legal-page {
    background-color: var(--bg-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

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

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

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

.legal-content strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.reset-cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin: 1rem 0;
}

.reset-cookie-btn:hover {
    background-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .image-text-section {
        flex-direction: row;
        align-items: center;
    }

    .section-image {
        width: 45%;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: row;
    }

    .service-detail-card:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .service-detail-image {
        width: 40%;
        flex-shrink: 0;
    }

    .thanks-page {
        flex-direction: row;
        align-items: flex-start;
    }

    .thanks-content {
        flex: 1;
    }

    .thanks-image {
        width: 40%;
        flex-shrink: 0;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

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

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

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

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

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

    .cookie-btn {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
    }

    .service-price-large {
        font-size: 1.4rem;
    }
}