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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #3d7a3f;
    --secondary-color: #d4af37;
    --text-dark: #2d2d2d;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f8f8;
    --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);
}

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-dark);
    background-color: var(--bg-white);
}

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

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

a:hover {
    color: var(--primary-dark);
}

/* 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: 100;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--bg-white);
    list-style: none;
    padding: 5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    display: flex;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 1rem 0;
}

.nav-link {
    font-size: 1.125rem;
    color: var(--text-dark);
    display: block;
    padding: 0.5rem 0;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

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

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

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

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

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

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

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

.intro-icon {
    width: 200px;
    height: 200px;
}

/* 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-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

/* Services Highlight */
.services-highlight {
    background-color: var(--bg-white);
}

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

.service-preview {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.service-preview:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

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

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

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

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

.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;
}

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

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

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

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

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

.testimonial footer {
    font-weight: 600;
    color: var(--text-medium);
}

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

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

.stat {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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: 1.25rem;
    background-color: var(--bg-light);
    line-height: 1.8;
}

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

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

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

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

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

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

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

.footer-links {
    list-style: none;
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-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: 0;
    line-height: 1.6;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    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%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-description {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Services Page */
.services-overview {
    background-color: var(--bg-light);
    padding: 2rem 0;
}

.services-main {
    background-color: var(--bg-white);
}

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

.service-header {
    background-color: var(--bg-light);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
    color: var(--primary-color);
}

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

.service-body {
    padding: 1.5rem;
}

.service-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

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

.extra-price {
    font-weight: 700;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

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

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

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
}

.benefit h3 {
    color: var(--primary-color);
}

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

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

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

.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;
}

/* Contact Page */
.contact-intro {
    background-color: var(--bg-light);
    padding: 2rem 0;
}

.contact-main {
    background-color: var(--bg-white);
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h2 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-company {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-company p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact FAQ */
.contact-faq {
    background-color: var(--bg-light);
}

/* Contact Reasons */
.contact-reasons {
    background-color: var(--bg-white);
}

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

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

.reason h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Contact Next Steps */
.contact-next-steps {
    background-color: var(--bg-light);
}

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

.step-simple {
    display: flex;
    gap: 1.5rem;
}

.step-num {
    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;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

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

.team-intro {
    background-color: var(--bg-light);
}

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

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

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

.approach-section {
    background-color: var(--bg-white);
}

.approach-content {
    margin-bottom: 3rem;
}

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

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

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.pillar-icon {
    width: 70px;
    height: 70px;
}

.pillar h3 {
    color: var(--primary-color);
}

.values-deep {
    background-color: var(--bg-light);
}

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

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

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

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

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

.commitment-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.commitment-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-about {
    background-color: var(--bg-white);
}

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

.quote-large p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-large footer {
    font-weight: 600;
    color: var(--text-medium);
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

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

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-text h2:first-child {
    margin-top: 0;
}

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

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

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-medium);
    font-style: italic;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        flex-direction: row;
        box-shadow: none;
        background-color: transparent;
    }

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

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

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

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

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

    .service-preview {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

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

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

    .testimonial {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

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

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

    .industry-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .footer-col {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

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

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

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

    .extra-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .benefit {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .process-step {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-company {
        flex: 1;
    }

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

    .reason {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

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

    .info-step {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-content {
        flex: 1;
    }

    .intro-visual {
        flex: 1;
    }

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

    .team-value {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .approach-pillars {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pillar {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .value-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }
}

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

    .value-card {
        min-width: calc(25% - 1.5rem);
    }

    .service-preview {
        min-width: calc(33.333% - 1.5rem);
    }

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

    .step {
        min-width: auto;
    }

    .testimonial {
        min-width: calc(33.333% - 1.5rem);
    }

    .stat {
        min-width: calc(25% - 1.5rem);
    }

    .industry-item {
        min-width: calc(50% - 1rem);
    }

    .extra-item {
        min-width: calc(25% - 1.5rem);
    }

    .benefit {
        min-width: calc(25% - 1.5rem);
    }

    .process-step {
        min-width: calc(20% - 1.6rem);
    }

    .reason {
        min-width: calc(25% - 1.5rem);
    }

    .team-value {
        min-width: calc(33.333% - 1.5rem);
    }

    .pillar {
        min-width: calc(25% - 1.5rem);
    }

    .value-item {
        min-width: calc(50% - 1rem);
    }
}
