/* 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: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px 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;
    position: relative;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

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

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

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

.nav-menu li {
    padding: 0.75rem 20px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a6b 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

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

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a6b 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

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

.btn-primary {
    background-color: #2c5aa0;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #fff;
}

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

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

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

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

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

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

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

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card.featured {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a6b 100%);
    color: #fff;
}

.service-card.featured h3 {
    color: #fff;
}

.link-arrow {
    color: #2c5aa0;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.service-card.featured .link-arrow {
    color: #fff;
}

/* Stats Section */
.stats {
    background-color: #1a3a6b;
    color: #fff;
}

.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;
    margin-bottom: 0.5rem;
    color: #fff;
}

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

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

.benefit-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a6b;
}

/* Process Section */
.process {
    background-color: #f8f9fa;
}

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

.step {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2c5aa0;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a6b;
}

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

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c5aa0;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

.testimonial cite {
    font-style: normal;
    display: block;
}

.testimonial cite strong {
    display: block;
    color: #1a3a6b;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial cite span {
    color: #666;
    font-size: 0.9375rem;
}

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

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

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

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 1.25rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a6b 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-section .btn-primary {
    background-color: #fff;
    color: #2c5aa0;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.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-content a {
    color: #fff;
    text-decoration: underline;
}

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

/* 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: 1001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: #1a3a6b;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #1a3a6b;
}

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

.cookie-option p {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9375rem;
    margin-left: 32px;
}

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

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

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

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

.value-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-item .icon {
    margin: 0 auto 1.5rem;
}

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

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

.team-area {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-area h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: #2c5aa0;
    border-radius: 50%;
}

.timeline-year {
    display: inline-block;
    background-color: #2c5aa0;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a3a6b;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.principle {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

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

.achievement-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.achievement-card h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.achievement-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

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

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a6b;
}

/* Services Page Styles */
.service-detail {
    margin-bottom: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-header {
    padding: 2rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a3a6b;
    text-align: left;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-features {
    padding: 2rem;
}

.service-features h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1a3a6b;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

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

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

.benefit-col h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a6b;
}

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

.phase {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.phase h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.phase-duration {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: #2c5aa0;
    color: #fff;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row.header-row {
    background-color: #1a3a6b;
    color: #fff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    min-width: 150px;
    text-align: center;
}

.comparison-row:not(.header-row) .comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

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

.contact-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    margin: 0 auto 1.5rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a3a6b;
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #666;
}

.office-content {
    max-width: 900px;
    margin: 0 auto;
}

.office-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.direction-option {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-option h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

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

.info-item {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.info-item p {
    font-weight: 600;
    color: #1a3a6b;
}

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

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

.expectation-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a6b;
}

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

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

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

.step-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-card .step-number {
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a3a6b;
}

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

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

.suggestion-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a6b;
}

.contact-reminder {
    background-color: #f8f9fa;
    text-align: center;
}

.email-highlight {
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

.office-info {
    color: #666;
}

/* Legal Pages */
.legal-hero {
    background-color: #1a3a6b;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.legal-date {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 0;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a6b;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

.legal-text ul {
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text a {
    color: #2c5aa0;
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

    .service-card.featured {
        flex: 0 0 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

    .cookie-buttons {
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

    .contact-card {
        flex: 1;
    }

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

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

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

    .step-card {
        flex: 1;
    }

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

    .service-info {
        flex: 1;
    }

    .service-price {
        align-items: flex-end;
    }

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

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

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

    section h2 {
        font-size: 2.5rem;
    }

    .philosophy-item {
        flex: 0 0 calc(33.333% - 1.334rem);
    }

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

    .service-card.featured {
        flex: 0 0 calc(66.666% - 0.667rem);
    }

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

    .testimonial {
        flex: 0 0 calc(33.333% - 1.334rem);
    }

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

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

    .value-item {
        flex: 0 0 calc(33.333% - 1.334rem);
    }

    .team-area {
        flex: 0 0 calc(33.333% - 1.334rem);
    }

    .achievement-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .direction-option {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .benefit-col {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

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