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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3d2a;
    --primary-light: #3a7050;
    --accent-color: #c29654;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #717171;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --error-color: #c34a36;
    --success-color: #2d5a3d;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

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

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

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

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

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

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

.editorial-hero {
    display: flex;
    flex-direction: column;
    padding: 4rem 5% 3rem;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.editorial-intro {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.editorial-story,
.editorial-insight,
.editorial-problem,
.editorial-revelation,
.editorial-trust,
.editorial-services,
.editorial-urgency,
.editorial-values,
.editorial-closer {
    padding: 3rem 5%;
}

.editorial-story {
    background-color: var(--bg-white);
}

.editorial-insight {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

.editorial-problem {
    background-color: var(--bg-white);
}

.editorial-revelation {
    background-color: var(--bg-light);
}

.editorial-trust {
    background-color: var(--bg-white);
}

.editorial-services {
    background-color: var(--bg-light);
    padding: 4rem 5%;
}

.editorial-urgency {
    background-color: var(--bg-white);
}

.editorial-values {
    background-color: var(--bg-light);
}

.editorial-closer {
    padding: 3rem 5%;
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.final-thought {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: var(--bg-light);
}

.inline-image {
    max-width: 680px;
    margin: 3rem auto;
}

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

.large-quote {
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.quote-attribution {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: -0.5rem;
}

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

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

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

.testimonial-section {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

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

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-muted);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.1);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.btn-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-dark);
}

.cta-inline {
    padding: 3rem 5%;
    background-color: var(--bg-white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.btn-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.cta-block {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-block h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-top: 0;
}

.cta-block p {
    font-size: 1.15rem;
    color: var(--bg-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b08546;
}

.btn-secondary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.contact-form-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-white);
    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);
}

.btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #b08546;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.footer {
    background-color: var(--text-color);
    color: var(--bg-light);
    padding: 3rem 5% 2rem;
}

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

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    margin-top: 0;
}

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

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

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

.footer-section a {
    color: var(--bg-light);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-light);
}

.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-color);
}

.page-content {
    min-height: 60vh;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 5%;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.featured-service {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.1);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    margin: 0;
    flex: 1;
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content p {
    line-height: 1.7;
}

.contact-section {
    padding: 3rem 5%;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info,
.contact-message {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-item p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.cta-hint {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

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

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

.thanks-page {
    padding: 4rem 5%;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-message {
    margin: 2rem 0;
}

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

.selected-service-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.selected-service-box h3 {
    margin-top: 0;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

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

.thanks-next-steps h2 {
    text-align: center;
    margin-top: 0;
}

.thanks-next-steps ol {
    line-height: 1.8;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 400px;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.legal-content {
    padding: 3rem 5%;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
}

.legal-content ul,
.legal-content ol {
    line-height: 1.8;
}

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

.team-section {
    padding: 3rem 5%;
}

.team-expertise {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.expertise-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.expertise-item p {
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
    }

    .team-expertise {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-item {
        flex: 1;
        min-width: 280px;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
        max-width: 600px;
    }

    .footer-content {
        flex-wrap: nowrap;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .lead-text {
        font-size: 1.15rem;
    }

    .large-quote {
        font-size: 1.3rem;
        padding-left: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.5rem 5%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail,
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-minimal {
        padding: 1rem 4%;
    }

    .editorial-hero,
    .editorial-intro,
    .editorial-story,
    .editorial-insight,
    .editorial-problem,
    .editorial-revelation,
    .editorial-trust,
    .editorial-services,
    .editorial-urgency,
    .editorial-closer,
    .page-header,
    .contact-section,
    .services-detailed,
    .legal-content,
    .team-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .service-price,
    .service-detail-price {
        font-size: 1.5rem;
    }
}
