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

html {
    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: #1d4ed8;
}

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.08);
    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.5rem;
    font-weight: 700;
    color: #1e40af;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

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

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.nav-link {
    padding: 0.75rem 1rem;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

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

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

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

.hero-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-visual img {
    max-width: 400px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
    background-color: #f8fafc;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

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

.btn-secondary {
    background-color: #0f172a;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #1e293b;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: #fff;
}

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

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

section h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-intro {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Company Intro */
.company-intro {
    background-color: #f8fafc;
}

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

.intro-text p {
    margin-bottom: 1rem;
    color: #475569;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

/* Philosophy */
.philosophy {
    background-color: #1e3a8a;
    color: #fff;
}

.philosophy h2 {
    color: #fff;
}

.philosophy p {
    color: #e0e7ff;
    margin-bottom: 1rem;
}

/* Services Highlight */
.services-highlight h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    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(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #475569;
}

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

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.benefit-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-text h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #475569;
}

/* Process */
.process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

.step h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.step p {
    color: #475569;
}

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

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

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

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

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

.testimonial-author {
    color: #64748b;
    font-weight: 600;
}

/* Industries */
.industries h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.industry-card h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: #475569;
}

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

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

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

.knowledge-item h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.knowledge-item p {
    color: #475569;
}

/* FAQ */
.faq,
.faq-section {
    background-color: #fff;
}

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

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

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

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #475569;
}

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

.cta h2 {
    color: #fff;
}

.cta p {
    color: #e0e7ff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-simple {
    background-color: #f8fafc;
    text-align: center;
    padding: 3rem 0;
}

.cta-simple h2 {
    margin-bottom: 1rem;
}

.email-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

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

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
    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 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #e2e8f0;
    margin: 0;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: #1e293b;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #1e3a8a;
}

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

.preference-item label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e3a8a;
    cursor: pointer;
}

.preference-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.preference-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

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

.services-intro p {
    font-size: 1.1rem;
    color: #475569;
}

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

.service-full {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: #eff6ff;
    border-bottom: 2px solid #2563eb;
}

.service-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.service-price {
    display: flex;
    align-items: center;
}

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

.service-details {
    padding: 2rem;
}

.service-details p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-comparison {
    background-color: #f8fafc;
}

.service-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.comparison-card h3 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.comparison-card p {
    color: #2563eb;
    font-weight: 600;
}

.benefits-section {
    background-color: #fff;
}

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

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

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

.benefit-box h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.benefit-box p {
    color: #475569;
}

.process-section {
    background-color: #f8fafc;
}

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

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

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

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

.flow-step h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
}

.flow-step p {
    color: #475569;
}

/* Contact Page */
.contact-info {
    padding: 3rem 0;
}

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

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

.contact-method h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.contact-method p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.info-box {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.info-box p {
    color: #475569;
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.office-details {
    background-color: #f8fafc;
}

.office-details h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.office-card h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.office-address {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.office-directions p {
    color: #475569;
    margin-bottom: 1rem;
}

.about-company {
    background-color: #fff;
}

.company-info p {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* About Page */
.story {
    background-color: #fff;
}

.story-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.values {
    background-color: #f8fafc;
}

.values h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.value-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #475569;
}

.team-intro {
    background-color: #fff;
}

.team-intro h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-highlight h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.team-highlight p {
    color: #475569;
}

.milestones {
    background-color: #f8fafc;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #475569;
}

.achievements {
    background-color: #fff;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.achievement-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.achievement-card p {
    color: #475569;
    font-size: 1.05rem;
}

.approach {
    background-color: #f8fafc;
}

.approach-content > p {
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

.approach-point h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.approach-point p {
    color: #475569;
}

.trust-indicators {
    background-color: #fff;
}

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

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

.trust-item p {
    color: #475569;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.step-box {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

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

.step-box p {
    color: #475569;
    margin: 0;
}

.meanwhile {
    margin-bottom: 3rem;
}

.meanwhile h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.meanwhile p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.link-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-section ul li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

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

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

    .intro-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .intro-text {
        flex: 1;
    }

    .intro-stats {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer-column {
        flex: 1;
    }

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

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

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

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

    .team-highlight {
        flex: 1;
    }

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

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

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

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

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

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

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }

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

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

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

    .step-box {
        flex: 1;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }

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

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .step {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .achievements-grid {
        flex-wrap: nowrap;
    }

    .achievement-card {
        flex: 1;
    }

    .trust-grid {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }

    .comparison-grid {
        flex-wrap: nowrap;
        gap: 1.5rem;
    }

    .comparison-card {
        flex: 1;
    }
}