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

:root {
    --primary-color: #7B68EE;
    --secondary-color: #4A90E2;
    --accent-color: #9370DB;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-accent: #E8E4F3;
    --border-color: #E0E0E0;
    --success-color: #52C41A;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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(--secondary-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-light);
}

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

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

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    margin-top: 1rem;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-accent) 100%);
}

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

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

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

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

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

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

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

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

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

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

.value-card {
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* Featured Services */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-feature {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

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

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

/* Benefits */
.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

.testimonial {
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Knowledge Cards */
.knowledge-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

/* FAQ */
.faq-list {
    margin-top: 2rem;
}

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

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

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

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question.active:after {
    content: "−";
}

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

.faq-answer p {
    padding: 1rem 1.5rem;
}

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

.cta h2 {
    color: var(--bg-color);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Timeline */
.timeline {
    margin-top: 2rem;
}

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

.timeline-marker {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}

.timeline-marker:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 9px;
    width: 2px;
    height: calc(100% + 2rem);
    background-color: var(--border-color);
}

.timeline-item:last-child .timeline-marker:after {
    display: none;
}

.timeline-content {
    flex: 1;
}

/* Team */
.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;
    text-align: center;
}

.member-icon svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

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

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

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

/* Values Detailed */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

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

/* Trust */
.trust-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

/* Services List */
.services-intro {
    background-color: var(--bg-light);
}

.category-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

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

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

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

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

.process-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 8px;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Comparison Table */
.comparison-table {
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-row:last-child {
    border-bottom: none;
}

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

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-bottom: none;
}

.comparison-header .comparison-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

.contact-card a {
    color: var(--primary-color);
    word-break: break-word;
}

/* Visit Info */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.column {
    flex: 1;
}

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

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

/* Company Details */
.details-box {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

/* Working Areas */
.cities-list {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

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

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

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

.step-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

/* Suggestions */
.suggestions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

.legal-text h2 {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

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

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

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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 {
    margin: 0;
}

.cookie-content a {
    color: var(--bg-color);
    text-decoration: underline;
}

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

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

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

.modal-content {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

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

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

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

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

    h2 {
        font-size: 2rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
        gap: 1.5rem;
    }

    .nav-menu a {
        border-bottom: none;
        padding: 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .comparison-cell {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

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

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

    .content-columns {
        flex-direction: row;
    }

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

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

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

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

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

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

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

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

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

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

    h2 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 3rem;
    }

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

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

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

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

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

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

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

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

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

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

    .process-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta {
        display: none;
    }
}