/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2a5934;
    --color-secondary: #4a8b5c;
    --color-accent: #7cb88f;
    --color-dark: #1a1a1a;
    --color-grey: #6b6b6b;
    --color-light-grey: #f5f5f5;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
}

/* Header and Navigation */
.header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo:hover {
    color: var(--color-secondary);
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

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

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

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

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

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

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

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

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

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

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

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Page Hero */
.page-hero {
    background-color: var(--color-light-grey);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.section-intro {
    font-size: 1.125rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
    text-align: center;
}

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

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.philosophy-section .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-light-grey);
    border-radius: 8px;
}

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Services */
.services-highlight {
    background-color: var(--color-light-grey);
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:after {
    content: '→';
}

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background-color: var(--color-light-grey);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-grey);
}

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

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

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

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

/* Benefits Section */
.benefits-section {
    background-color: var(--color-white);
}

.benefits-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-content {
    flex: 1;
}

.benefits-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-list img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Industries/Who We Work With */
.industries-section {
    background-color: var(--color-light-grey);
}

.industries-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.industry-item {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.industry-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-light-grey);
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #e8e8e8;
}

.faq-question img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question img {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-grey);
}

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

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

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

.footer-col p {
    color: #a0a0a0;
}

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

.footer-col a {
    color: #a0a0a0;
}

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

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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-bottom: 0;
}

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

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

.modal.show {
    display: flex;
}

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

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

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

.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: 3px;
}

.cookie-option p {
    color: var(--color-grey);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-left: 1.75rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* About Page Specific */
.story-section {
    background-color: var(--color-white);
}

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

.values-section {
    background-color: var(--color-light-grey);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.team-member {
    background-color: var(--color-light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline */
.milestones-section {
    background-color: var(--color-light-grey);
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 70px;
}

.timeline-content {
    flex: 1;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
}

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

/* Achievements */
.achievements-section {
    background-color: var(--color-white);
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.achievement-item {
    background-color: var(--color-light-grey);
    padding: 2rem;
    border-radius: 8px;
}

.achievement-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.approach-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Services Page */
.services-main {
    background-color: var(--color-white);
}

.service-detailed {
    margin-bottom: 4rem;
}

.service-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.service-tagline {
    color: var(--color-grey);
    font-size: 1.125rem;
}

.service-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-body ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-body li {
    margin-bottom: 0.5rem;
}

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

.pricing-card {
    background-color: var(--color-light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--color-primary);
}

.pricing-card.featured {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.pricing-card h4 {
    margin-bottom: 0.5rem;
}

.pricing-card.featured h4,
.pricing-card.featured .price,
.pricing-card.featured .price-detail {
    color: var(--color-white);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.price-detail {
    color: var(--color-grey);
    font-size: 0.875rem;
}

/* Comparison Table */
.comparison-section {
    background-color: var(--color-light-grey);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-header {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell img {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

/* Benefits Grid Alternative */
.benefits-grid-section {
    background-color: var(--color-white);
}

.benefits-grid-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    background-color: var(--color-light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

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

/* Contact Page */
.contact-info-section {
    background-color: var(--color-white);
}

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

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-grey);
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.hours-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.contact-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.directions-section {
    background-color: var(--color-light-grey);
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.about-facility-section {
    background-color: var(--color-white);
}

.about-facility-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.facility-item {
    background-color: var(--color-light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

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

.company-info-section {
    background-color: var(--color-light-grey);
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
}

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

/* Thank You Page */
.thank-you-section {
    background-color: var(--color-light-grey);
    padding: 4rem 0;
}

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

.thank-you-content img {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps-section {
    background-color: var(--color-white);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    background-color: var(--color-light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

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

/* Legal Pages */
.legal-page {
    background-color: var(--color-white);
    padding: 3rem 0;
}

.legal-updated {
    color: var(--color-grey);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

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

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

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

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

.cookies-table th {
    background-color: var(--color-light-grey);
    font-weight: 600;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

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

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        border-bottom: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-links li {
        padding: 0;
    }

    .menu-toggle {
        display: none;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

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

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

    .philosophy-item {
        flex: 1;
        min-width: 250px;
    }

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

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

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

    .service-card {
        flex: 1;
        min-width: 280px;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

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

    .process-step {
        flex: 1;
        min-width: 250px;
    }

    .benefits-section .container {
        flex-direction: row;
        align-items: center;
    }

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

    .industry-item {
        flex: 1;
        min-width: 280px;
    }

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

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

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

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

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

    .value-item {
        flex: 1;
        min-width: 280px;
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

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

    .achievement-item {
        flex: 1;
        min-width: 280px;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1;
        min-width: 240px;
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--color-border);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

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

    .benefit-item {
        flex: 1;
        min-width: 280px;
    }

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

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

    .direction-item {
        flex: 1;
        min-width: 250px;
    }

    .facility-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .facility-item {
        flex: 1;
        min-width: 250px;
    }

    .thank-you-links {
        flex-direction: row;
        justify-content: center;
    }

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

    .step-item {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .page-hero {
        padding: 4rem 0;
    }

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