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

html {
    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;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style-position: inside;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d5016;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    color: #3a3a3a;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d5016;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero - Visual First */
.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    padding: 1.2rem 3rem;
    background-color: #2d5016;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.cta-hero:hover {
    background-color: #3d6b20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

/* Content Sections */
.story-intro {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

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

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a5a5a;
}

/* Image Statement */
.image-statement {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.statement-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    padding: 0 2rem;
}

.statement-quote {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #5a5a5a;
}

.highlight-text {
    color: #2d5016;
    font-weight: 600;
    font-size: 1.2rem;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #5a5a5a;
    max-width: 800px;
}

.insight-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2d5016;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.insight-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #2d5016;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1rem;
    color: #d0e0c0;
    font-weight: 600;
}

/* Process Visual */
.process-visual {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.section-title-centered {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.process-step img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.process-step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
}

.process-step-content p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Trust Builder */
.trust-builder {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-content {
    flex: 1.2;
}

.trust-image {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
    padding-left: 1.8rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.3rem;
}

.trust-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Social Proof */
.social-proof {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p:first-child {
    font-size: 1.1rem;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card .author {
    font-size: 0.95rem;
    color: #2d5016;
    font-weight: 600;
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3.5rem;
    max-width: 800px;
}

.services-display {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 2.5rem;
    background-color: #fafafa;
    border-left: 5px solid #2d5016;
    position: relative;
}

.service-item.featured {
    background-color: #f0f5ec;
    border-left: 5px solid #5a8c30;
    box-shadow: 0 6px 25px rgba(45, 80, 22, 0.15);
}

.service-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.service-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-item .price {
    font-size: 1.8rem;
    color: #2d5016;
    font-weight: bold;
    display: block;
    margin-top: 1.5rem;
}

.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #2d5016;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Urgency Builder */
.urgency-builder {
    padding: 4rem 2rem;
    background-color: #2d5016;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.5rem;
    color: #ffeb3b;
    font-weight: bold;
}

/* CTA Sections */
.cta-primary {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-container p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background-color: #2d5016;
    color: #ffffff;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.cta-button-large:hover {
    background-color: #3d6b20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.2rem 3rem;
    background-color: #2d5016;
    color: #ffffff;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-submit:hover {
    background-color: #3d6b20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

/* Final Reassurance */
.final-reassurance {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.final-reassurance h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.final-reassurance p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

.final-thought {
    font-size: 1.25rem;
    color: #2d5016;
    font-weight: 600;
    margin-top: 2rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    z-index: 999;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.sticky-cta-button {
    padding: 0.9rem 2.5rem;
    background-color: #ffffff;
    color: #2d5016;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
}

.sticky-cta-button:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

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

.footer-section a {
    display: block;
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.7rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.8rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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 {
    color: #e0e0e0;
    font-size: 0.95rem;
    flex: 1;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #3d6b20;
}

.cookie-btn.reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

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

/* Page Hero Simple */
.page-hero-simple {
    margin-top: 70px;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, #2d5016 0%, #3d6b20 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.4rem;
    color: #e0e0e0;
}

/* About Page */
.about-story {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.about-story p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image-break {
    height: 500px;
    overflow: hidden;
}

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

.about-evolution {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.about-values {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
    border-top: 4px solid #2d5016;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.value-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.about-team {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-team p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-cta {
    padding: 5rem 2rem;
    background-color: #2d5016;
}

/* Services Page */
.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2d5016;
}

.service-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5016;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 1.5rem 0;
}

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

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

.service-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5016;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
}

.service-cta-button:hover {
    background-color: #3d6b20;
}

.services-guarantee {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.services-guarantee h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-guarantee p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.services-cta-final {
    padding: 5rem 2rem;
    background-color: #2d5016;
}

/* Contact Page */
.contact-main {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

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

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-detail a {
    color: #2d5016;
    text-decoration: underline;
}

.note-text {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 0.8rem;
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7a7a7a;
    text-align: center;
    font-style: italic;
}

.contact-visit {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.contact-visit h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-visit p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.visit-benefits {
    margin: 2rem 0;
    list-style: none;
}

.visit-benefits li {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.visit-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.3rem;
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: #2d5016;
}

/* Thanks Page */
.thanks-hero {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

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

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

.thanks-content h1 {
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.4rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details ul li {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.thanks-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-size: 1.5rem;
}

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

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

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.step-content p {
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-email-note {
    background-color: #fff9e6;
    padding: 1.5rem;
    border-left: 4px solid #ffeb3b;
    margin-top: 2rem;
}

.thanks-email-note p {
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-explore {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.thanks-explore h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-explore p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.explore-links {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.explore-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.explore-card:hover {
    background-color: #f0f5ec;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.explore-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
}

.explore-card p {
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-social {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.thanks-social h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-social p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

/* Legal Pages */
.legal-page {
    margin-top: 70px;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3d6b20;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    color: #2d5016;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 1rem;
    font-size: 0.95rem;
    color: #5a5a5a;
    border-bottom: 1px solid #f0f0f0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .content-split,
    .content-asymmetric,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

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

    .section-title-centered,
    .services-preview h2,
    .about-values h2 {
        font-size: 2.2rem;
    }

    .story-intro h2,
    .about-story h2 {
        font-size: 2rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .brand-logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }
}