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

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: #2c3e50;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

.main-nav {
    padding: 0.75rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #1e40af;
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #2563eb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

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

.btn-primary:hover {
    background-color: #1e40af;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

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

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

.hero h1 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

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

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

/* Page Hero */
.page-hero {
    background-color: #f9fafb;
    padding: 3rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

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

.section-intro-text {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.philosophy-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Stats Section */
.stats-section {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

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

/* Services Showcase */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-feature {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-visual {
    width: 100%;
}

.feature-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.feature-content h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

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

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

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

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

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #1a252f;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    position: relative;
    padding-left: 4.5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

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

/* Benefits Section */
.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

/* Insights Section */
.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.insight-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding-bottom: 1.25rem;
    color: #4b5563;
}

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

/* CTA Section */
.cta-section {
    background-color: #2563eb;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

/* Footer */
.site-footer {
    background-color: #1a252f;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section ul {
    list-style: none;
    margin: 0;
}

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

.footer-section a {
    color: #d1d5db;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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.95rem;
}

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

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

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

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    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 #e5e7eb;
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
}

.modal-close:hover {
    color: #1a252f;
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

.cookie-option p {
    margin: 0.5rem 0 0 2rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Services Page */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.service-main h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.service-description {
    color: #4b5563;
    line-height: 1.7;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.price-unit {
    font-size: 0.9rem;
    color: #6b7280;
}

.service-details ul {
    list-style: none;
    margin: 0;
}

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

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Services Benefits */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.flow-step {
    position: relative;
    padding-left: 4rem;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

/* Comparison Section */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-header,
.comparison-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-col {
    flex: 1;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.comparison-col h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-content .note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.info-box {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    margin-bottom: 1rem;
}

/* Directions Section */
.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.directions-block {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.directions-block h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.directions-block ul {
    margin-left: 1.5rem;
}

/* Company Info */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-block {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

/* About Page */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 5rem;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-left: 2px solid #e5e7eb;
    padding-left: 2rem;
}

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

.timeline-item:last-child .timeline-content {
    border-left: none;
}

/* Approach Section */
.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.principle-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

.achievement-item {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.achievement-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

/* Commitment Section */
.commitment-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-block {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.commitment-block h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

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

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

.thankyou-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thankyou-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

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

/* Next Steps */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-card .step-number {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Resources Section */
.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.resource-card h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.link-arrow:hover {
    color: #1e40af;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.legal-text h2:first-of-type {
    border-top: none;
    margin-top: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text .intro-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
}

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

.update-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

.cookie-table {
    margin: 1.5rem 0;
}

.cookie-entry {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cookie-entry p {
    margin-bottom: 0.5rem;
}

.cookie-entry p:last-child {
    margin-bottom: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

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

    .hero {
        padding: 5rem 0;
    }

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

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

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

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

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

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

    .service-feature {
        flex-direction: row;
        align-items: center;
    }

    .service-feature.reverse {
        flex-direction: row-reverse;
    }

    .feature-visual {
        flex: 1;
    }

    .feature-content {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

    .cookie-actions {
        flex-direction: row;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-price {
        align-items: center;
        text-align: center;
        min-width: 200px;
    }

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

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

    .comparison-header,
    .comparison-row {
        flex-direction: row;
    }

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }

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

    .directions-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .company-details {
        flex-direction: row;
    }

    .company-block {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

    .commitment-block {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

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

    .resource-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }
}

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

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

    .philosophy-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .industry-item {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
    }

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

    .insight-card {
        flex: 1;
    }

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

    .benefit-item {
        flex: 1;
    }

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

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

    .step-card {
        flex: 1;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}