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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

/* Header and Navigation */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo:hover {
    color: #1e3a8a;
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: #374151;
    font-weight: 500;
}

.nav-menu a:hover {
    background: #f9fafb;
    color: #2563eb;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

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

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

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: #64748b;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
}

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

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

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

.bg-light {
    background: #f8fafc;
}

/* Features Grid */
.features-grid {
    padding: 4rem 0;
}

.features-grid .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 100%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Services */
.services-highlight {
    padding: 4rem 0;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

.services-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.service-item p {
    color: #64748b;
    line-height: 1.7;
}

.services-highlight .btn {
    display: block;
    margin: 2rem auto 0;
    max-width: 300px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 4rem 0;
}

.philosophy-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.philosophy-section p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
}

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

.stat-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 2rem;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #3b82f6;
}

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

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

/* Process Section */
.process-section {
    padding: 4rem 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
}

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

/* Industries Section */
.industries-section {
    padding: 4rem 0;
}

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

.industries-section p {
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.8;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-item {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    color: #334155;
    transition: background 0.3s ease;
}

.industry-item:hover {
    background: #e2e8f0;
}

/* Insights Section */
.insights-section {
    padding: 4rem 0;
}

.insights-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

.insight-content p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.insight-content strong {
    color: #1e293b;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.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: #64748b;
    line-height: 1.7;
}

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

.cta-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn-primary:hover {
    background: #f1f5f9;
    color: #1e40af;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.team-section > p {
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.8;
}

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

.team-highlight {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.team-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.team-highlight p {
    color: #64748b;
    line-height: 1.7;
}

/* Timeline */
.milestones-section {
    padding: 4rem 0;
}

.milestones-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* Recognition Section */
.recognition-section {
    padding: 4rem 0;
}

.recognition-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.recognition-section p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

.recognition-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.recognition-list li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.trust-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

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

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.service-detail > p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.service-features ul {
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
}

.price-detail {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Service Benefits */
.service-benefits {
    padding: 4rem 0;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.benefit-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Delivery Options */
.delivery-options {
    padding: 4rem 0;
}

.delivery-options h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.delivery-options > .container > p {
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.8;
}

.format-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.format-card {
    flex: 1 1 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #3b82f6;
}

.format-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.format-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Pricing Notes */
.pricing-notes {
    padding: 4rem 0;
}

.pricing-notes h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.pricing-notes > .container > p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.pricing-factors {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-factors li {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
}

.comparison-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.comparison-content p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

.decision-factors {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.decision-factors li {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

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

.timeline-step {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.timeline-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.timeline-step p {
    color: #64748b;
    line-height: 1.7;
}

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

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

.contact-card {
    flex: 1 1 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.contact-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: #2563eb;
    font-weight: 500;
}

.contact-card .note {
    font-size: 0.9375rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1rem;
}

/* About Location */
.about-location {
    padding: 4rem 0;
}

.about-location h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.about-location p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

/* Contact FAQ */
.contact-faq {
    padding: 4rem 0;
}

.contact-faq h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

/* Company Detail */
.company-detail {
    padding: 4rem 0;
}

.company-detail h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

.company-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.company-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.company-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.company-item p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.company-item ul {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.company-item li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.6;
}

/* Directions Section */
.directions-section {
    padding: 4rem 0;
}

.directions-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

.directions-item {
    margin-bottom: 2rem;
}

.directions-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.directions-item p {
    color: #475569;
    line-height: 1.8;
}

/* Alternative Contact */
.alternative-contact {
    padding: 4rem 0;
}

.alternative-contact h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.alternative-contact p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

.connection-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.connection-list li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.thank-you-content > p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.next-step-card {
    flex: 1 1 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.next-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.next-step-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-reminder h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
    text-align: left;
}

.contact-reminder p {
    color: #475569;
    line-height: 1.8;
    text-align: left;
}

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

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1e293b;
    font-weight: 700;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

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

.legal-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Approach Section */
.approach-section {
    padding: 4rem 0;
}

.approach-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.approach-point {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.approach-point h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.approach-point p {
    color: #64748b;
    line-height: 1.7;
}

/* Philosophy Detail Section */
.philosophy-detail-section {
    padding: 4rem 0;
}

.philosophy-detail-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.philosophy-detail-section p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

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

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

.footer-section {
    flex: 1 1 100%;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
}

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

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

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

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

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

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option span {
    color: #475569;
    line-height: 1.6;
}

.cookie-option strong {
    color: #1e293b;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .nav-menu li {
        border: none;
    }

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

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

    .menu-toggle {
        display: none;
    }

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

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

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

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

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

    .stat-item {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

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

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

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

    .format-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

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

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

    .next-step-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

    .footer-content {
        gap: 3rem;
    }

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

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

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

    .page-hero {
        padding: 4rem 0;
    }

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

    .content-section {
        padding: 5rem 0;
    }

    .features-grid {
        padding: 5rem 0;
    }

    .services-highlight {
        padding: 5rem 0;
    }

    .stats-section {
        padding: 5rem 0;
    }

    .testimonials-section {
        padding: 5rem 0;
    }

    .process-section {
        padding: 5rem 0;
    }

    .industries-section {
        padding: 5rem 0;
    }

    .faq-section {
        padding: 5rem 0;
    }

    .cta-section {
        padding: 5rem 0;
    }

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

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

    .timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

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