* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8b849;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background: var(--bg-white);
}

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--secondary-color);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 1rem 0;
    min-width: 200px;
    margin: 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a5f 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #d4a53d;
    color: var(--text-dark);
}

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

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

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

section {
    padding: 4rem 0;
}

.company-intro {
    background: var(--bg-white);
}

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

.intro-text h2 {
    margin-bottom: 1.5rem;
}

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

.philosophy {
    background: var(--bg-light);
}

.philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.philosophy-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.services-highlight {
    background: var(--bg-white);
}

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

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

.service-feature {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-feature h3 {
    margin-bottom: 1rem;
}

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

.link-arrow:after {
    content: ' →';
}

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

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

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.process-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.testimonials {
    background: var(--bg-white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

.benefit-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.knowledge-section {
    background: var(--bg-white);
}

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

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

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

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

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

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

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-content a {
    color: var(--bg-white);
}

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

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    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 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.875rem;
}

.modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.story-section,
.values-section,
.team-section,
.milestones-section,
.approach-section,
.industries-section {
    background: var(--bg-white);
}

.story-section:nth-of-type(even),
.values-section:nth-of-type(even),
.team-section:nth-of-type(even) {
    background: var(--bg-light);
}

.story-text p {
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 60px;
    height: 60px;
}

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

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

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

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

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

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

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

.approach-block {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.approach-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.services-intro {
    background: var(--bg-light);
    padding: 2rem 0;
}

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

.services-list {
    background: var(--bg-white);
}

.service-card-large {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-title-block h2 {
    margin-bottom: 0;
}

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

.service-description {
    margin-bottom: 1.5rem;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-benefits,
.process-comparison {
    background: var(--bg-light);
}

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

.benefit-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

.comparison-table {
    background: var(--bg-white);
    border-radius: 8px;
    overflow-x: auto;
}

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

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

.comparison-cell {
    padding: 1rem;
}

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

.header-row .comparison-cell {
    color: var(--bg-white);
}

.contact-main {
    background: var(--bg-white);
}

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

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

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

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

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

.contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text p {
    margin: 0;
}

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

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

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

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

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

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

.direction-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.direction-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.company-info-section {
    background: var(--bg-white);
}

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

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.info-card p {
    margin-bottom: 0.5rem;
}

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

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

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

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

.thank-you-message {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

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

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

.step-card .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.thank-you-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.while-waiting {
    background: var(--bg-light);
}

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

.suggestion-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

.legal-content {
    background: var(--bg-white);
}

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

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

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

.legal-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.legal-text th,
.legal-text td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-text th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.legal-text td {
    color: var(--text-light);
}

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

    h2 {
        font-size: 2rem;
    }

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

    .mobile-toggle {
        display: none;
    }

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

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text,
    .intro-visual {
        flex: 1;
    }

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

    .philosophy-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

    .service-feature {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

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

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

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

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

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

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

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

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

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

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

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-buttons {
        justify-content: flex-end;
    }

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

    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-year {
        min-width: 100px;
    }

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

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

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

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

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

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

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

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

    .comparison-cell {
        flex: 1;
        min-width: 120px;
    }

    .comparison-cell:first-child {
        flex: 1.5;
    }

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

    .contact-info-block,
    .contact-description-block {
        flex: 1;
    }

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

    .direction-block {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

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

    .info-card {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

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

    .suggestion-card {
        flex: 1;
    }

    .legal-text table {
        display: table;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 6rem 0;
    }

    .philosophy-card,
    .service-feature,
    .testimonial-card {
        min-width: auto;
    }

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

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