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

:root {
    --primary-color: #1a5f7a;
    --primary-dark: #134559;
    --primary-light: #2a7a9b;
    --secondary-color: #57a773;
    --accent-color: #f4a259;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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 20px;
}

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

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

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

.nav-links {
    list-style: none;
    display: none;
    width: 100%;
    flex-direction: column;
}

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

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

.nav-links a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

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

/* 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: 2px solid transparent;
}

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

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

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

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

.btn-text {
    background-color: transparent;
    color: var(--text-light);
    padding: 0.875rem 1rem;
}

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

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

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

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

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

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

.hero-visual img {
    margin: 0 auto;
}

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

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Section Styling */
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-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

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

.section-header h2 {
    margin-bottom: 0.75rem;
}

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

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

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

.philosophy-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.philosophy-icon img {
    width: 100%;
    height: 100%;
}

/* Services Highlight */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

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

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

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

/* Statistics Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--bg-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;
}

/* Industries Section */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

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

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

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

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

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

.testimonial {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    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.9rem;
}

/* Knowledge/Benefits Blocks */
.knowledge-blocks,
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.knowledge-block,
.benefit-block {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.knowledge-block h3,
.benefit-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

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

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

.benefit-point h3 {
    margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
}

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

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

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

/* Services List Page */
.services-list-section {
    padding-bottom: 4rem;
}

.services-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.service-icon-large {
    width: 70px;
    height: 70px;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
}

.service-title-block h3 {
    margin-bottom: 0.5rem;
}

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

.service-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.service-description ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-description li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

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

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

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-description h3,
.contact-description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.company-block {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.company-block h3 {
    margin-bottom: 0.75rem;
}

/* Directions */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.direction-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

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

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

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

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

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.thank-you-actions {
    margin-top: 3rem;
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.effective-date {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.cookies-table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.cookies-table tr {
    border-bottom: 1px solid var(--border-color);
}

.cookies-table td {
    padding: 0.75rem 0;
}

.cookies-table td:first-child {
    width: 30%;
    font-weight: 600;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

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

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

.value-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

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

.team-member {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.achievement-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.approach-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.trust-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.trust-item h3 {
    margin-bottom: 0.5rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

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

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

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

.cookie-content p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.cookie-actions {
    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.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

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

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

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

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

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h3 {
    margin: 0;
}

.category-status {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Media Queries - Tablet */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
    }

    .nav-links li {
        margin: 0 0 0 2rem;
    }

    .menu-toggle {
        display: none;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .benefits-text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

    .contact-details {
        flex: 1 1 40%;
    }

    .contact-description {
        flex: 1 1 60%;
    }

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

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

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

    .footer-section {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .cookie-actions .btn {
        flex: 0 0 auto;
    }

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

    .action-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .company-block {
        flex: 1;
    }
}

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }

    .philosophy-item {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

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

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

    .stat-item {
        flex: 1;
    }

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

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

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

    .knowledge-block {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

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

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

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

    .footer-section {
        flex: 1 1 calc(25% - 1.5rem);
    }
}