/* 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 {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: 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 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;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

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

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 4rem 0;
}

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

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

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.btn-primary {
    background-color: #fff;
    color: #1e40af;
}

.btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.section-header h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-intro {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

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

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

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

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

/* Expertise Section */
.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-text p {
    margin-bottom: 1rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #eff6ff;
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
}

/* Services Grid */
.services-preview {
    background-color: #f8fafc;
}

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

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

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

.service-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2563eb;
    font-weight: 600;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-step h3 {
    margin-top: 0.5rem;
}

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

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #475569;
}

.testimonial-author strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

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

.industry-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

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

.knowledge-block {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.knowledge-block h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.knowledge-block p {
    margin-bottom: 1rem;
}

.knowledge-block p:last-child {
    margin-bottom: 0;
}

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

.faq-item {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    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: #475569;
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.cta .btn-primary {
    background-color: #fff;
    color: #1e40af;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

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

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    max-width: 100%;
}

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

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

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    font-size: 2rem;
    color: #64748b;
    padding: 0 0.5rem;
    line-height: 1;
}

.cookie-modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-modal-footer .btn {
    width: 100%;
}

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

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

.page-intro {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Story Section (About Page) */
.story-content p {
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

/* Team Section */
.team-intro {
    margin-bottom: 3rem;
}

.team-intro h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.team-intro p {
    margin-bottom: 1rem;
}

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

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

.quality-item h4 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

/* Achievements Timeline */
.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 2rem;
}

.achievement-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.approach-text h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.approach-text p {
    margin-bottom: 1rem;
}

/* Commitment Grid */
.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commitment-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.commitment-item h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

/* Why Us List */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.why-item p {
    margin-bottom: 0.75rem;
}

/* Services Page */
.service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.service-detail h2 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: #64748b;
    font-size: 1.05rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 1rem;
    color: #64748b;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.price-period {
    font-size: 1.25rem;
    color: #64748b;
}

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

.service-detail-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

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

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit-card h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

/* Comparison Section */
.comparison-intro {
    margin-bottom: 2rem;
}

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

.comparison-row {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-situation {
    flex: 1;
}

.comparison-situation strong {
    display: block;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.comparison-recommendation {
    flex: 1;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.recommendation-badge {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.comparison-recommendation strong {
    display: block;
    margin-bottom: 0.5rem;
}

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

.contact-info h2 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.contact-tagline {
    color: #64748b;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.contact-detail a {
    color: #2563eb;
}

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

.contact-description ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Location Section */
.location {
    background-color: #f8fafc;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-description h3,
.location-description h4 {
    color: #1e40af;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.location-description p {
    margin-bottom: 1rem;
}

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

.location-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

/* Company Info Grid */
.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.company-info-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.company-info-item p {
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
}

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

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

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

.step-card .step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

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

.meanwhile-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.meanwhile-item h3 {
    margin-bottom: 1rem;
}

.meanwhile-item p {
    margin-bottom: 1.5rem;
}

.reassurance {
    background-color: #f8fafc;
}

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

.reassurance-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

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

.legal-intro {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.cookie-table {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table tr {
    border-bottom: 1px solid #e2e8f0;
}

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

.cookie-table td {
    padding: 1rem;
}

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

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 0;
    }

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

    .philosophy-grid,
    .services-grid,
    .industries-grid,
    .trust-grid,
    .values-grid,
    .benefits-grid,
    .steps-grid,
    .company-info-grid,
    .location-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .service-card,
    .industry-item,
    .trust-item,
    .value-card,
    .benefit-card,
    .step-card,
    .company-info-item,
    .location-feature {
        flex: 0 0 calc(50% - 1rem);
    }

    .expertise-content,
    .contact-grid,
    .location-content {
        flex-direction: row;
        gap: 4rem;
    }

    .expertise-text,
    .expertise-stats,
    .contact-info,
    .contact-description,
    .location-description,
    .location-features {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

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

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

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

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

    .meanwhile-item {
        flex: 1;
    }
}

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

    .philosophy-item,
    .service-card,
    .trust-item,
    .value-card {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .industry-item,
    .benefit-card,
    .step-card,
    .company-info-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .location-feature {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}