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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8ab399;
    --accent-color: #f4a460;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

.nav-menu li {
    padding: 0.5rem 20px;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #234d3f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.page-intro {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

/* Intro Section */
.intro-section {
    background-color: var(--bg-white);
}

.intro-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-section {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--bg-white);
}

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

.philosophy-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.philosophy-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    background-color: var(--bg-light);
}

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

.service-feature {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.service-feature img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.service-feature h3 {
    margin-bottom: 1rem;
}

.service-feature p {
    color: var(--text-light);
}

.cta-center {
    text-align: center;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

/* Process Section */
.process-section {
    background-color: var(--bg-white);
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    max-width: 300px;
}

/* Knowledge Section */
.knowledge-section {
    background-color: var(--bg-light);
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.knowledge-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.knowledge-card h3 {
    margin-bottom: 0.75rem;
}

.knowledge-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--bg-white);
    border: none;
    padding: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-light);
}

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

.trust-item {
    text-align: center;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.trust-item h3 {
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

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

/* Story Section */
.story-section {
    background-color: var(--bg-white);
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background-color: var(--bg-light);
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

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

/* Team Section */
.team-section {
    background-color: var(--bg-white);
}

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

.team-detail h3 {
    margin-bottom: 1rem;
}

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

/* Approach Section */
.approach-section {
    background-color: var(--bg-light);
}

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

.approach-text h3 {
    margin-bottom: 1rem;
}

.approach-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Milestones / Timeline */
.milestones-section {
    background-color: var(--bg-white);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

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

/* Mission Section */
.mission-section {
    background-color: var(--bg-light);
}

.mission-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Community Section */
.community-section {
    background-color: var(--bg-white);
}

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

.community-item h3 {
    margin-bottom: 1rem;
}

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

/* Services Page */
.services-intro {
    background-color: var(--bg-white);
    text-align: center;
}

.services-list {
    background-color: var(--bg-light);
}

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

.service-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-text h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.service-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Service Benefits */
.service-benefits {
    background-color: var(--bg-white);
}

.benefit-item {
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

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

/* Service Process */
.service-process {
    background-color: var(--bg-light);
}

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

.process-item {
    display: flex;
    gap: 1.5rem;
}

.process-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: 1.25rem;
    font-weight: 700;
}

.process-item h3 {
    margin-bottom: 0.5rem;
}

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

/* Package Section */
.package-section {
    background-color: var(--bg-white);
}

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

.package-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.package-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.package-card h3 {
    margin-bottom: 1rem;
}

.package-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.package-card ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.package-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-intro {
    background-color: var(--bg-white);
    text-align: center;
}

.contact-details {
    background-color: var(--bg-light);
}

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

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

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

.contact-card a {
    color: var(--primary-color);
}

.contact-card a:hover {
    text-decoration: underline;
}

/* About Location */
.about-location {
    background-color: var(--bg-white);
}

.location-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Directions */
.directions-section {
    background-color: var(--bg-light);
}

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

.direction-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.direction-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.direction-item h3 {
    margin-bottom: 1rem;
}

.direction-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Company Info */
.company-info {
    background-color: var(--bg-white);
}

.company-details p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Visit Section */
.visit-section {
    background-color: var(--bg-light);
}

.visit-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Area Section */
.area-section {
    background-color: var(--bg-white);
}

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

.area-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.area-item h3 {
    margin-bottom: 0.75rem;
}

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

/* Thank You Page */
.thankyou-section {
    background-color: var(--bg-white);
    padding: 4rem 0;
}

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

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

.thankyou-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thankyou-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps {
    background-color: var(--bg-light);
}

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

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

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    background-color: var(--bg-white);
}

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

.legal-section h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--text-color);
}

.cookie-modal h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .benefit-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .service-feature {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .testimonial-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .knowledge-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .trust-content {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .team-detail {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .service-content {
        flex-direction: row;
        align-items: center;
    }

    .service-icon {
        flex-shrink: 0;
    }

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

    .contact-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .areas-grid {
        flex-direction: row;
    }

    .area-item {
        flex: 1;
    }

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

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

    .package-grid {
        flex-direction: row;
    }

    .package-card {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        padding: 0;
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero-text {
        margin-left: 0;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
    }

    section h2 {
        font-size: 2.25rem;
    }

    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-visual {
        flex: 1;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-card {
        flex: 1 1 25%;
    }

    .services-highlight {
        flex-wrap: nowrap;
    }

    .service-feature {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .knowledge-grid {
        flex-wrap: nowrap;
    }

    .knowledge-card {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 25%;
    }

    .community-grid {
        flex-wrap: nowrap;
    }

    .community-item {
        flex: 1;
    }

    .contact-grid {
        flex-wrap: nowrap;
    }

    .contact-card {
        flex: 1;
    }

    .directions-grid {
        flex-wrap: nowrap;
    }

    .direction-item {
        flex: 1;
    }
}