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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b6f47;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-color: #9d7b54;
    --success-color: #4a7c5c;
}

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

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

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

a:hover {
    color: var(--accent-color);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500;
}

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

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

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

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

/* Navigation */
.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

/* Editorial Layout - Main Structure */
.editorial-layout {
    min-height: calc(100vh - 400px);
}

.main-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Article Hero */
.article-hero {
    margin-bottom: 50px;
    position: relative;
}

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

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

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.subtitle {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.5;
    font-style: italic;
}

/* Typography */
.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.intro-text {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 28px;
    font-weight: 500;
}

.story-section {
    margin-bottom: 50px;
}

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.story-section h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 32px 0 16px 0;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 20px;
}

/* Inline Images */
.inline-image-block {
    margin: 50px 0;
    background-color: var(--bg-light);
    padding: 8px;
    border-radius: 4px;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.image-caption {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

/* Service Cards - Editorial Style */
.services-inline {
    margin: 60px 0;
}

.services-inline > h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.service-card-editorial {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card-editorial.reverse {
    flex-direction: column;
}

.service-visual {
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.service-description h3 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-description p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.cta-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.cta-service:hover {
    background-color: var(--accent-color);
}

/* Testimonials */
.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

/* Trust Section */
.trust-section {
    margin: 60px 0;
}

.trust-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 24px;
    font-weight: 700;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.form-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-section > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

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

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    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);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
}

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

/* Final Note / Disclaimer */
.final-note {
    margin: 60px 0 0 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* Services Page Specific */
.services-detailed {
    margin: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-card.reverse {
    flex-direction: column;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 28px 0 12px 0;
    font-weight: 600;
}

.service-detail-content ul {
    margin: 16px 0 16px 24px;
}

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

.service-pricing-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.price-tag {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

/* Contact Page */
.contact-layout {
    margin: 50px 0;
}

.contact-info-section {
    margin-bottom: 50px;
}

.contact-info-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.email-display {
    color: var(--text-color);
    font-weight: 500;
}

.map-placeholder {
    margin: 50px 0;
    background-color: var(--bg-light);
    padding: 8px;
    border-radius: 4px;
}

.location-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.additional-info-section {
    margin: 60px 0;
}

.additional-info-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.services-list-contact {
    margin: 24px 0 24px 28px;
}

.services-list-contact li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.process-section {
    margin: 60px 0;
}

.process-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 30px auto;
}

.thanks-container h1 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--success-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-message {
    text-align: left;
    margin: 40px 0;
}

.thanks-message p {
    margin-bottom: 20px;
}

.thanks-actions {
    margin: 50px 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
}

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

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

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

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

.thanks-additional-info {
    margin: 60px 0;
    text-align: left;
}

.thanks-additional-info h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.next-steps {
    margin-top: 30px;
}

.next-step-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.next-step-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.next-step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-contact-info {
    margin: 40px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.thanks-contact-info p {
    margin: 0;
    color: var(--text-light);
}

/* About Page CTA */
.cta-section-about {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    border-radius: 6px;
}

.cta-section-about h2 {
    font-size: 32px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section-about p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--bg-white);
}

.cta-button {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 24px 0 12px 0;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 28px;
}

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

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 30px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

    .story-section h2 {
        font-size: 26px;
    }

    .services-inline > h2 {
        font-size: 28px;
    }

    .service-description h3 {
        font-size: 24px;
    }

    .service-price {
        font-size: 20px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .process-step {
        flex-direction: column;
    }

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

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

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