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

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

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

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #2c3e50;
    font-weight: 500;
}

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

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

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

.btn-primary:hover {
    background-color: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

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

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

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

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

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

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

.page-hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

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

.philosophy-item .icon {
    margin: 0 auto 1rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.philosophy-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Service Cards */
.services-highlight {
    background-color: #ffffff;
}

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

.service-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-center {
    text-align: center;
}

/* Stats Section */
.stats {
    background-color: #FF6B35;
    color: #ffffff;
}

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

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

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

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

/* Process Steps */
.process {
    background-color: #f9fafb;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.process-step h3 {
    font-size: 1.375rem;
    color: #2c3e50;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.testimonial {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

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

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
}

/* Industries */
.industries {
    background-color: #f9fafb;
}

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

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #FF6B35;
}

.industry-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.knowledge-item {
    padding: 1.5rem;
    border-left: 3px solid #FF6B35;
    background-color: #f9fafb;
}

.knowledge-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.knowledge-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #FF6B35;
    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: #5a6c7d;
    line-height: 1.7;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a25 100%);
    color: #ffffff;
    text-align: center;
}

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

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

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

.story-content p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #FF6B35;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.team-member h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member .role {
    font-size: 1rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Timeline */
.milestones {
    background-color: #f9fafb;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Approach Section */
.approach {
    background-color: #ffffff;
}

.approach-content p {
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.principle h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #FF6B35;
}

.principle p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

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

.benefit-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Services Page */
.services-overview {
    background-color: #ffffff;
}

.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    text-align: left;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.service-description {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

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

.service-details li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.service-details p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Comparison Table */
.service-comparison {
    background-color: #f9fafb;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-row.header {
    background-color: #FF6B35;
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid #e8eef3;
}

.comparison-row:not(.header) .comparison-cell:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Packages */
.packages {
    background-color: #ffffff;
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.package {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package.featured {
    border-color: #FF6B35;
}

.package h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #5a6c7d;
}

.package ul {
    list-style: none;
}

.package li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.package li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #FF6B35;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-note {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.package-note p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact Page */
.contact-info {
    background-color: #ffffff;
}

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

.contact-details h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-item a {
    color: #FF6B35;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-description h2 {
    margin-bottom: 1.5rem;
}

.contact-description p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Directions */
.directions {
    background-color: #f9fafb;
}

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

.direction-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.direction-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* Contact FAQ */
.contact-faq {
    background-color: #ffffff;
}

/* Company Info */
.company-info {
    background-color: #f9fafb;
}

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

.info-block p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    padding: 5rem 0;
}

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

.success-icon {
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.thank-you-content p {
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

.step-card .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.updated {
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
    overflow-x: auto;
    display: block;
}

.cookie-table thead {
    background-color: #f9fafb;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e8eef3;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #b8c5d6;
    line-height: 1.7;
}

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

.footer-section a {
    color: #b8c5d6;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3d4f63;
    color: #b8c5d6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.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;
    line-height: 1.6;
}

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

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

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

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

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    color: #5a6c7d;
    font-size: 0.875rem;
}

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

/* Process Detail */
.process-detail {
    background-color: #f9fafb;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-details,
    .contact-description {
        flex: 1;
    }

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

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

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

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

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-direction: row;
        margin-left: auto;
    }

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

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

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

    .comparison-cell {
        flex: 1;
        border-right: 1px solid #e8eef3;
    }

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

    .cookie-table {
        display: table;
    }
}

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

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

    section h2 {
        font-size: 2.25rem;
    }

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

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

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

    .stat-item {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .package {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

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

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

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

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