:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #475569;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success-color: #059669;
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    list-style: none;
}

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

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

.nav-menu li:last-child {
    border-bottom: none;
}

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

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

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

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

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    display: none;
}

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    text-align: center;
}

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

.page-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

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

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

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

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.intro-grid,
.story-content,
.philosophy-content,
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text p,
.story-text p,
.philosophy-text p,
.approach-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.intro-highlights,
.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item img {
    flex-shrink: 0;
}

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

.highlight-item p {
    color: var(--text-light);
    font-size: 0.938rem;
}

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

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

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

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

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

.services-cards,
.values-grid,
.industries-grid,
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card,
.value-card,
.benefit-card,
.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s;
}

.service-card:hover,
.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-icon,
.value-icon {
    margin-bottom: 1.5rem;
}

.service-card h3,
.value-card h3,
.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p,
.value-card p,
.team-card p {
    color: var(--text-light);
}

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

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

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

.process-step h3 {
    font-size: 1.25rem;
}

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

.philosophy-section,
.company-intro,
.approach-section {
    background: var(--bg-light);
}

.philosophy-visual,
.story-visual,
.approach-visual {
    display: none;
}

.industries-grid {
    gap: 1rem;
}

.industry-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.industry-item img {
    flex-shrink: 0;
}

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

.industry-item p {
    color: var(--text-light);
    font-size: 0.938rem;
}

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

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

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

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

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial strong {
    color: var(--text-color);
}

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

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

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.benefit-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 1rem;
    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: 0 1.25rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

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

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

.cta-content .btn-primary:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.938rem;
}

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

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.modal.show {
    display: flex;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

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

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

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transform: translateX(-50%);
}

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

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.team-highlights {
    gap: 1.5rem;
}

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

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

.commitment-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.commitment-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.commitment-content p {
    color: var(--text-light);
}

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

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

.cert-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.cert-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

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

.why-matters-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

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

.service-detail-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-meta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
}

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

.pricing-info {
    background: var(--bg-light);
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-note p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-benefits {
    background: var(--bg-light);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.comparison-header {
    background: var(--bg-light);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    min-width: 120px;
}

.comparison-cell.comparison-label {
    font-weight: 600;
}

.comparison-cell.comparison-check {
    color: var(--success-color);
}

.comparison-cell.comparison-cross {
    color: var(--text-light);
}

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

.contact-info,
.contact-additional {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-block p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item img {
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

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

.directions-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.directions-text h3:first-child {
    margin-top: 0;
}

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

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

.tip-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.tip-card img {
    flex-shrink: 0;
}

.tip-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.938rem;
}

.company-description,
.description-content,
.visit-info {
    background: var(--bg-light);
}

.description-content,
.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-content h2,
.visit-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.visit-cta {
    margin-top: 2rem;
    text-align: center;
}

.thankyou-section {
    padding: 6rem 0;
    text-align: center;
}

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

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

.thankyou-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thankyou-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

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

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    margin: 0;
}

.legal-content {
    background: var(--bg-white);
}

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

.legal-text h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

.legal-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.legal-text h4 {
    font-size: 1.125rem;
    margin: 1rem 0 0.75rem;
}

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

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.legal-text strong {
    color: var(--text-color);
}

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

.cookies-table {
    margin: 2rem 0;
}

.cookies-table h3 {
    font-size: 1.125rem;
    margin: 2rem 0 1rem;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

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

.cookies-table td {
    color: var(--text-light);
}

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

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

    .section-header h2 {
        font-size: 2.25rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .hero-visual {
        display: block;
        flex-shrink: 0;
    }

    .intro-grid,
    .story-content,
    .philosophy-content,
    .approach-content {
        flex-direction: row;
        align-items: center;
    }

    .intro-text,
    .story-text,
    .philosophy-text,
    .approach-text {
        flex: 1;
    }

    .intro-highlights,
    .story-visual,
    .philosophy-visual,
    .approach-visual {
        flex: 1;
        display: flex;
    }

    .philosophy-visual,
    .story-visual,
    .approach-visual {
        justify-content: center;
    }

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

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

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

    .values-grid,
    .industries-grid,
    .team-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card,
    .industry-item,
    .team-card {
        flex: 1;
        min-width: 280px;
    }

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

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

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

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

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

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

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

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

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

    .contact-info {
        flex: 2;
    }

    .contact-additional {
        flex: 1;
    }

    .directions-content {
        flex-direction: row;
        gap: 3rem;
    }

    .directions-text {
        flex: 2;
    }

    .directions-tips {
        flex: 1;
    }

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

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

    .step-card {
        flex: 1;
    }
}

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

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

    section {
        padding: 5rem 0;
    }
}