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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #1a3d30;
}

/* Navigation */
.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5f4f;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2d5f4f;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2d5f4f;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5f4f;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a3d30;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

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

/* Editorial Layout */
.editorial-layout {
    background-color: #ffffff;
}

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

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wide-column {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
    background-color: #2d2d2d;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem 3rem;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.hero-subtext {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Editorial Sections */
.editorial-intro {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.editorial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.editorial-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.editorial-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

.editorial-content h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #2a2a2a;
}

/* Visual Breaks */
.visual-break {
    margin: 4rem 0;
    background-color: #f5f5f5;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 3rem 0;
}

/* Inline CTA */
.inline-cta {
    margin: 2rem 0;
}

.text-link-cta {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d5f4f;
    border-bottom: 2px solid #2d5f4f;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Insight Block */
.insight-block {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.insight-card {
    background-color: #2d5f4f;
    color: #ffffff;
    padding: 3rem;
    border-radius: 2px;
}

.insight-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Benefits Narrative */
.benefits-narrative {
    padding: 3rem 0;
}

.benefit-item {
    margin: 2.5rem 0;
}

.benefit-item h4 {
    margin-top: 0;
}

/* Testimonials */
.testimonial-inline {
    padding: 4rem 0;
    background-color: #fafafa;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    border-left: 4px solid #2d5f4f;
    background-color: #ffffff;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 0;
}

/* Services Grid */
.services-preview {
    padding: 4rem 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    margin: 0 1.5rem 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5f4f;
    margin: 1.5rem 1.5rem 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-select-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #2d5f4f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-disclaimer {
    margin: 1.5rem 0;
}

.small-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.form-submit-btn {
    width: 100%;
    padding: 1.125rem;
    background-color: #2d5f4f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #1a3d30;
}

/* Trust Footer */
.trust-footer {
    padding: 3rem 0;
    background-color: #fafafa;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-left: 3px solid #2d5f4f;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background-color: #f9f9f9;
}

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

.updated-date {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* About Sections */
.about-story,
.about-values,
.about-team,
.about-process,
.about-commitment,
.about-cta {
    padding: 3rem 0;
}

.value-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-item h3 {
    margin-top: 0;
}

.process-step {
    margin: 2rem 0;
}

.process-step h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2d5f4f;
}

.commitment-card {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-left: 4px solid #2d5f4f;
}

.commitment-card h3 {
    margin-top: 0;
}

/* Services Detail */
.services-detail {
    padding: 3rem 0;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
}

.service-detail-content {
    padding: 0 2rem;
}

.service-detail-content h2 {
    margin-top: 0;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5f4f;
    margin: 1rem 0 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

.service-detail-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-note {
    font-style: italic;
    color: #666;
    background-color: #f9f9f9;
    padding: 1rem;
    margin-top: 1.5rem;
}

.services-cta {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-left: 3px solid #2d5f4f;
}

.contact-card h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    margin-top: 0;
    color: #2d5f4f;
}

.contact-showroom,
.contact-faq,
.contact-cta {
    padding: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-service-info {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 3px;
}

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

.next-step {
    margin: 2rem 0;
}

.next-step h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2d5f4f;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.thanks-contact {
    margin-top: 3rem;
}

.email-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5f4f;
}

/* Buttons */
.button-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d5f4f;
    color: #ffffff;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #1a3d30;
    color: #ffffff;
}

.button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d5f4f;
    border: 2px solid #2d5f4f;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background-color: #2d5f4f;
    color: #ffffff;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookies-table th,
.cookies-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

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

.cookies-table td {
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
    }

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .value-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .contact-info-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .service-detail-block {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-block.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-image {
        flex: 0 0 50%;
    }

    .service-detail-content {
        flex: 1;
        padding: 0 3rem;
    }
}