/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

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 1.25rem;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

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

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

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

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

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

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

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

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

.hero-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

.btn-text {
    background: transparent;
    color: #64748b;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #475569;
}

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

section h2 {
    font-size: 1.875rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    text-align: left;
}

/* Company Story */
.company-story {
    background-color: #f8fafc;
}

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

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

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

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-item svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Services */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-icon svg {
    width: 80px;
    height: 80px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

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

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

.philosophy-text {
    color: #475569;
}

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

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

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

.feature-box h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #64748b;
    font-size: 0.9375rem;
}

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

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

.testimonial-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: 1rem;
}

.testimonial-text p {
    color: #475569;
    font-style: italic;
    line-height: 1.6;
}

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

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

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

.process-step {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

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

.process-step h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #64748b;
}

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

.industry-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.industry-item p {
    color: #64748b;
}

/* Insights */
.insights {
    background-color: #f8fafc;
}

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

.insight-article {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.insight-article h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.insight-article p {
    color: #475569;
    margin-bottom: 1rem;
}

.insight-article p:last-child {
    margin-bottom: 0;
}

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

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

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

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #0f172a;
}

.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-bottom: 1.25rem;
    color: #475569;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

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

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
}

.cta-content .btn-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-content .btn-primary:hover {
    background-color: #f1f5f9;
    color: #2563eb;
}

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

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

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

.footer-column p,
.footer-column a {
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #ffffff;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    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 {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

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

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

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

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

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: left;
}

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

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 500;
}

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

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

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

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

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

.page-intro {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.content-main p {
    color: #475569;
    margin-bottom: 1rem;
}

.content-sidebar {
    flex-shrink: 0;
}

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

.highlight-box h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 0.5rem 0;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list strong {
    color: #2563eb;
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

/* Team */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-member {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.member-icon svg {
    width: 100px;
    height: 100px;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #2563eb;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

/* Values */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-block {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

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

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

.value-block h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.value-block p {
    color: #64748b;
    line-height: 1.6;
}

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.achievement-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.achievement-content h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.achievement-content p {
    color: #64748b;
    line-height: 1.6;
}

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

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

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

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

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

.commitment-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.commitment-item h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.commitment-item p {
    color: #64748b;
    line-height: 1.6;
}

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

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

.intro-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-detail {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.service-header h3 {
    font-size: 1.25rem;
    color: #0f172a;
}

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

.service-description {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-includes {
    list-style: none;
    margin-top: 1rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #64748b;
    position: relative;
}

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

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

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

.benefit-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

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

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

.flow-step h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.flow-step p {
    color: #64748b;
    line-height: 1.6;
}

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

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

.info-block h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-block p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.info-icon svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #475569;
    margin-bottom: 0.25rem;
}

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

.contact-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card strong {
    color: #0f172a;
}

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

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

.directions-text h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.directions-text h3:first-child {
    margin-top: 0;
}

.directions-text p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.company-details {
    max-width: 800px;
    margin: 2rem auto 0;
}

.detail-row {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-label {
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.detail-value {
    color: #0f172a;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #f8fafc;
}

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

.trust-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.trust-stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.trust-stat .stat-text {
    color: #64748b;
    font-size: 0.9375rem;
}

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

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

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

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

.thank-you-content h1 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 500;
}

.thank-you-content p {
    color: #475569;
    line-height: 1.6;
}

.next-steps {
    background-color: #ffffff;
}

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

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.step-card .step-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

.while-waiting {
    background-color: #f8fafc;
}

.waiting-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waiting-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.waiting-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.waiting-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-reminder {
    background-color: #ffffff;
}

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

.reminder-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.email-highlight a {
    color: #2563eb;
    font-weight: 600;
}

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

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

.trust-stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.trust-stat-item p {
    color: #64748b;
    line-height: 1.4;
}

.back-home {
    background-color: #ffffff;
}

.back-home-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.back-home-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Legal Pages */
.legal-hero {
    background-color: #f8fafc;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.legal-hero h1 {
    font-size: 1.875rem;
    color: #0f172a;
}

.legal-intro {
    color: #64748b;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

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

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

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

.legal-text h2:first-child {
    margin-top: 0;
}

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

.legal-text h4 {
    font-size: 1.0625rem;
    color: #0f172a;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

.legal-text a:hover {
    color: #1d4ed8;
}

.legal-text strong {
    color: #0f172a;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cookies-table thead {
    background-color: #f8fafc;
}

.cookies-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
}

.cookies-table td {
    padding: 1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

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

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

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

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

    .hero-actions {
        flex-direction: row;
    }

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

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

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

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

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

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

    .philosophy-text {
        flex: 1;
    }

    .philosophy-features {
        flex: 0 0 300px;
    }

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

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

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

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

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

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

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

    .insight-article {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

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

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

    .content-sidebar {
        flex: 0 0 300px;
    }

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

    .team-member {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

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

    .achievement-item {
        flex-direction: row;
    }

    .achievement-year {
        flex: 0 0 100px;
    }

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

    .commitment-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .benefit-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

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

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

    .contact-info {
        flex: 1;
    }

    .contact-additional {
        flex: 1;
    }

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

    .directions-text {
        flex: 1;
    }

    .directions-visual {
        flex: 0 0 400px;
    }

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

    .detail-label {
        flex: 0 0 250px;
    }

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

    .trust-stat {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

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

    .waiting-card {
        flex: 1;
    }

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

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

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

    .footer-column {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

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

    .hero {
        padding: 4rem 0;
    }

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

    section h2 {
        font-size: 2.25rem;
    }

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

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

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

    .process-step {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .industry-item {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .team-member {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .commitment-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .benefit-card {
        flex: 0 0 calc(25% - 1.125rem);
    }

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

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

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