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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #7f8c8d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #95a5a6;
    --border-color: #e1e8ed;
    --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;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

.nav {
    padding: 1rem 0;
}

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

.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(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: var(--text-dark);
    transition: background-color 0.3s;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

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

.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(--white);
}

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

.hero-content {
    max-width: 800px;
}

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

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

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

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

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

.values-section h2 {
    text-align: center;
}

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

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

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

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

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

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

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.split-visual img {
    width: 100%;
    margin-top: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.testimonials-section h2 {
    text-align: center;
}

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

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

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-medium);
}

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

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

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

.industry-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    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-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

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

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

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

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

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.service-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.benefit-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

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

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

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

.process-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-icon img {
    width: 64px;
    height: 64px;
}

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

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

/* Pricing Info */
.pricing-info-section {
    background-color: var(--white);
}

.pricing-info p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.pricing-factors {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-factors li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

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

.contact-block h2,
.contact-block h3 {
    margin-bottom: 0.75rem;
}

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

.contact-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-text h2 {
    margin-bottom: 1.5rem;
}

.contact-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

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

/* About Contact Section */
.about-contact-section {
    background-color: var(--white);
}

.about-contact-section p {
    max-width: 800px;
    margin: 0 auto 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

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

/* Final CTA */
.final-cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.final-cta-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

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

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

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

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

/* Values Detail */
.values-detail-section {
    background-color: var(--white);
}

.values-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-detail-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.value-detail-item:last-child {
    border-bottom: none;
}

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

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

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

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.award-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.award-year {
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.award-name {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.philosophy-detail {
    max-width: 800px;
    margin: 0 auto;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

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

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

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

.legal-page ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

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

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--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.6);
    font-size: 0.875rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

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

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

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

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

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

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

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

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

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0;
    }

    .menu-toggle {
        display: none;
    }

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

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

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

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

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

    .split-text,
    .split-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .process-detail-step {
        flex-direction: row;
        align-items: center;
    }

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

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-details,
    .contact-text {
        flex: 1;
    }

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

    .direction-item {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

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

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

    .team-member {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-year {
        flex-shrink: 0;
        width: 80px;
    }

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

    .footer-col {
        flex: 1;
    }

    .cookie-buttons {
        flex-direction: row;
        justify-content: flex-end;
    }

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

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

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

    .step-item {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .process-step {
        flex: 1;
    }

    .industries-list {
        flex-wrap: nowrap;
    }

    .industry-item {
        flex: 1;
    }

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

    .benefit-item {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

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

    .step-item {
        flex: 1;
    }
}