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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: bold;
    color: #2563eb;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    font-size: 1.1rem;
    color: #333;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
}

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

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

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #334155;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

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

section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #64748b;
}

/* Intro Section */
.intro-section {
    background-color: #f8fafc;
}

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

.intro-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background-color: #fff;
}

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

.value-card {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.value-card p {
    color: #64748b;
}

/* Statistics Section */
.statistics-section {
    background-color: #2563eb;
    color: #fff;
}

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

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

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

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

/* Services Highlight */
.services-highlight {
    background-color: #f8fafc;
}

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

.service-highlight-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.service-highlight-card p {
    color: #64748b;
}

/* Process Section */
.process-section {
    background-color: #fff;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
}

/* Testimonials */
.testimonials-section {
    background-color: #f8fafc;
}

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

.testimonial-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
}

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

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

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-item p {
    color: #64748b;
}

/* Industries Section */
.industries-section {
    background-color: #f8fafc;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-item {
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
}

/* Knowledge Section */
.knowledge-section {
    background-color: #fff;
}

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

.knowledge-card {
    padding: 1.5rem;
    background-color: #eff6ff;
    border-radius: 8px;
}

.knowledge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.knowledge-card p {
    color: #475569;
}

/* FAQ Section */
.faq-section {
    background-color: #f8fafc;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #2563eb;
    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;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

/* Story Section */
.story-section {
    background-color: #fff;
}

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

.story-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8fafc;
}

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

.philosophy-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.philosophy-card p {
    color: #64748b;
}

/* Team Section */
.team-section {
    background-color: #fff;
}

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

.team-card {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.team-role {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.team-card p {
    color: #64748b;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #2563eb;
}

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

.timeline-content p {
    color: #64748b;
}

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.achievement-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.achievement-content p {
    color: #64748b;
}

/* Trust Section */
.trust-section {
    background-color: #f8fafc;
}

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

.trust-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services List */
.services-intro {
    background-color: #f8fafc;
    padding: 2rem 0;
}

.services-list-section {
    background-color: #fff;
}

.service-card-full {
    margin-bottom: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-brief {
    font-size: 0.95rem;
    color: #64748b;
}

.service-price {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.service-body {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.7;
}

/* Service Benefits */
.service-benefits-section {
    background-color: #f8fafc;
}

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

.benefit-box {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.benefit-box-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.benefit-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.benefit-box p {
    color: #64748b;
}

/* Process Service */
.process-service-section {
    background-color: #fff;
}

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

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

.process-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.process-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.process-text p {
    color: #64748b;
}

/* Comparison Section */
.comparison-section {
    background-color: #f8fafc;
}

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

.comparison-col {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.comparison-col.highlight {
    background-color: #eff6ff;
    border: 2px solid #2563eb;
}

.comparison-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.comparison-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Contact Locations */
.contact-intro {
    background-color: #f8fafc;
    padding: 2rem 0;
}

.contact-locations {
    background-color: #fff;
}

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

.location-card {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
}

.location-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.location-item strong {
    color: #1e293b;
}

.location-item a {
    color: #2563eb;
    text-decoration: underline;
}

.location-directions {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.location-directions h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.location-directions p {
    color: #64748b;
    line-height: 1.7;
}

/* Contact Info */
.contact-info-section {
    background-color: #f8fafc;
}

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

.contact-info-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info-card p {
    color: #64748b;
    margin-bottom: 0.75rem;
}

.contact-info-card a {
    color: #2563eb;
    font-weight: 600;
}

/* About Company Section */
.about-company-section {
    background-color: #fff;
}

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

.company-details p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.company-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.fact-item {
    flex: 1 1 200px;
    color: #475569;
}

.fact-item strong {
    color: #1e293b;
}

/* Thank You */
.thank-you-section {
    padding: 4rem 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 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.thank-you-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #475569;
}

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

/* Next Steps */
.next-steps-section {
    background-color: #f8fafc;
}

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

.step-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.step-number-small {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
}

/* Info Section */
.info-section {
    background-color: #fff;
}

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

.info-card {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.info-card p {
    color: #64748b;
}

/* Legal Content */
.legal-content {
    background-color: #fff;
}

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

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.legal-text h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #334155;
}

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

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #475569;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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 {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: left;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
}

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

.cookie-description {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
    color: #64748b;
}

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

/* Media Queries */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
        flex-direction: row;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

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

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

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero-visual {
        flex: 1;
        margin-top: 0;
    }

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

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

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

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

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

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

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

    .testimonial-card {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

    .comparison-col {
        flex: 1;
    }

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

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

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

    .contact-info-card {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

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

    section h2 {
        font-size: 2.25rem;
    }

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

    .value-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

    .service-highlight-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .philosophy-grid,
    .team-grid,
    .benefits-grid {
        flex-wrap: nowrap;
    }

    .philosophy-card,
    .team-card,
    .benefit-box {
        flex: 1;
    }

    .location-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}