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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --accent-color: #8b5cf6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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;
    transition: color 0.3s ease;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.main-nav ul {
    display: none;
    list-style: none;
}

.main-nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.main-nav li {
    margin: 0.5rem 0;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

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

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

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-dark);
    transition: transform 0.3s ease;
}

/* 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;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

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

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

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

/* Grid Layouts */
.intro-grid,
.services-grid,
.benefits-layout,
.testimonials-grid,
.knowledge-grid,
.team-grid,
.values-grid,
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.intro-text {
    margin-bottom: 2rem;
}

.intro-text p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

.stat-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

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

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

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

.lead-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.philosophy-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

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

/* Service Cards */
.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

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

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

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

.card-link:hover {
    text-decoration: underline;
}

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

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

.process-step {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

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

/* Benefits */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

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

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.7;
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Industries */
.industries-served {
    text-align: center;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-tag {
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--text-medium);
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
}

/* Knowledge Cards */
.knowledge-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.knowledge-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

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

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

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

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

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

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

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

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

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

.cta-section h2 {
    color: white;
}

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

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

.footer-grid {
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-light);
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.375rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.cookie-option p {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Services Page */
.services-intro {
    padding: 2rem 0;
    text-align: center;
}

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

.service-detail {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header img {
    width: 4rem;
    height: 4rem;
}

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

.service-body ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-body li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
}

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

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

.directions-text h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

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

.company-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.company-detail-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.detail-value {
    color: var(--text-medium);
}

/* About Page */
.story-section {
    padding: 3rem 0;
}

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

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

.mission-card {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.mission-card img {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
}

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

.value-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

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

.value-icon img {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
}

.team-member {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.member-image {
    margin-bottom: 1rem;
}

.member-image img {
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
    border-radius: 50%;
}

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

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

.achievements-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    padding-left: 3rem;
    position: relative;
}

.achievement-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.achievement-year {
    position: absolute;
    left: -0.5rem;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.achievement-item h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-medium);
}

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

.approach-text h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.indicator-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.indicator-item img {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

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

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

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

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
}

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

.step-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: left;
}

.step-item .step-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: 700;
}

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

.additional-resources {
    background-color: var(--bg-light);
}

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

.resource-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.resource-card img {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

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

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

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

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

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-medium);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Service Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-col {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
}

.comparison-col h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-list {
    list-style: none;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
}

.comparison-list li:before {
    content: '✓';
    display: inline-block;
    margin-right: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-list.positive li {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--text-dark);
}

.comparison-list.positive li:before {
    color: var(--success-color);
}

.comparison-list.negative li {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--text-dark);
}

.comparison-list.negative li:before {
    content: '✗';
    color: #ef4444;
}

.benefit-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.375rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Process Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flow-step {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.flow-step .step-icon {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.flow-step p {
    color: var(--text-medium);
}

/* Responsive Design - Tablet */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }

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

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

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

    .intro-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

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

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

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

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

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

    .resource-card {
        flex: 1;
    }

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

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

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

    .comparison-col {
        flex: 1;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .main-nav li {
        margin: 0 0.5rem;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 3rem;
    }

    .hero-content > div {
        flex: 1;
    }

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

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

    .intro-text,
    .intro-stats {
        flex: 1;
    }

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

    .service-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

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

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

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

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

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

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

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

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

    .footer-col {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .service-header {
        flex-direction: row;
        align-items: flex-start;
    }

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

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

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

    .mission-card {
        flex: 1;
    }

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

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

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

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

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

    .indicator-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .directions-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .directions-text {
        flex: 2;
    }

    .directions-visual {
        flex: 1;
    }

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

    .step-item {
        flex: 1;
    }

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

    .flow-step {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .company-detail-item {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

    section h2 {
        font-size: 2.25rem;
    }

    .service-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

    .value-item {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .indicator-item {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .flow-step {
        flex: 0 0 calc(20% - 1.2rem);
    }
}