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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #6b9e47;
    --light-green: #e8f5e0;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #707070;
    --white: #ffffff;
    --light-bg: #f8f9f7;
    --border-color: #d4e0cc;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

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

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

ul {
    list-style-position: inside;
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
}

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

.nav-links a {
    color: var(--medium-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.cta-primary:hover {
    background-color: var(--primary-green);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-green);
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--secondary-green);
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.cta-secondary:hover {
    background-color: var(--secondary-green);
    color: var(--white);
}

/* Intro Split Section */
.intro-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.values-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--medium-text);
    line-height: 1.7;
}

/* Services Showcase */
.services-showcase {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.15rem;
    color: var(--medium-text);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-details p {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--accent-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

/* Testimonials */
.testimonials {
    background-color: var(--light-green);
    padding: 5rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.67rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
}

/* Process Split */
.process-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--medium-text);
    line-height: 1.7;
}

.process-image {
    flex: 1;
}

.process-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Form Section */
.cta-form-section {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

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

.form-container h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    color: var(--medium-text);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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: var(--secondary-green);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: var(--secondary-green);
    text-decoration: underline;
}

/* Gallery Preview */
.gallery-preview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.gallery-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery-item {
    flex: 1 1 calc(25% - 1.125rem);
    min-width: 250px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.main-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1 1 calc(25% - 2.25rem);
    min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--secondary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--primary-green);
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1100;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-green);
    color: var(--white);
}

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-intro-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.mission-vision {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.mission-box,
.vision-box {
    flex: 1;
    background-color: var(--light-green);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-box p,
.vision-box p {
    color: var(--medium-text);
    line-height: 1.8;
}

.team-approach {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.approach-split {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.approach-item.reverse {
    flex-direction: row-reverse;
}

.approach-item img {
    flex: 1;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-content p {
    color: var(--medium-text);
    line-height: 1.8;
}

.values-detailed {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.values-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.values-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-green);
    box-shadow: var(--shadow);
}

.value-item h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    color: var(--medium-text);
    line-height: 1.7;
}

.stats-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.stat-item {
    flex: 1 1 calc(25% - 1.875rem);
    min-width: 220px;
    text-align: center;
    background-color: var(--light-green);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-text);
    font-size: 1.1rem;
}

.cta-about {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-content .cta-primary {
    background-color: var(--white);
    color: var(--primary-green);
}

.cta-content .cta-primary:hover {
    background-color: var(--light-green);
}

/* Services Page Styles */
.services-intro {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.service-full {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid var(--border-color);
}

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

.service-header-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-header-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1.5;
}

.service-info h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-tag {
    font-size: 1.6rem;
    color: var(--accent-green);
    font-weight: 700;
}

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

.service-image-small img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-description p {
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-description h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.service-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-description li {
    color: var(--medium-text);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.service-cta {
    background-color: var(--light-green);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

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

.cta-box h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.faq-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-green);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

/* Contact Page Styles */
.contact-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-detail h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-detail p {
    color: var(--medium-text);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--secondary-green);
    font-weight: 500;
}

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

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-info {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.process-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.timeline-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    display: flex;
    gap: 1.5rem;
}

.timeline-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    min-width: 60px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--medium-text);
    line-height: 1.7;
}

.faq-contact {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-quick-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-quick-item h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-quick-item p {
    color: var(--medium-text);
    line-height: 1.7;
}

.map-placeholder {
    background-color: var(--light-green);
    padding: 5rem 2rem;
    text-align: center;
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
}

.map-info h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-info p {
    color: var(--medium-text);
    line-height: 1.8;
}

/* Thanks Page Styles */
.thanks-hero {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--accent-green);
    color: var(--white);
    font-size: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    background-color: var(--light-green);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.thanks-details {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

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

.thanks-details li {
    color: var(--medium-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.thanks-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.next-steps {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.next-steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.next-step-card {
    flex: 1 1 calc(33.333% - 1.67rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.next-step-card h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.next-step-card p {
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.next-step-card a {
    color: var(--secondary-green);
    font-weight: 500;
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-updated {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-green);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    color: var(--medium-text);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-section strong {
    color: var(--dark-text);
    font-weight: 600;
}

.legal-section a {
    color: var(--secondary-green);
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        display: none;
    }

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

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .intro-split,
    .service-split,
    .process-split,
    .about-intro-split,
    .mission-vision,
    .approach-item,
    .contact-split,
    .thanks-hero,
    .service-header-split {
        flex-direction: column;
        gap: 2.5rem;
    }

    .service-split.reverse,
    .approach-item.reverse,
    .service-header-split.reverse {
        flex-direction: column;
    }

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

    .hero-text p {
        font-size: 1.05rem;
    }

    .intro-text h2,
    .values-grid h2,
    .services-header h2,
    .testimonials h2,
    .process-text h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .value-card,
    .testimonial-card,
    .stat-item,
    .timeline-item,
    .faq-quick-item,
    .next-step-card {
        flex: 1 1 100%;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .intro-text h2,
    .values-grid h2,
    .services-header h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .gallery-item {
        flex: 1 1 100%;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}