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

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

a {
    color: #2c5f7c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d4f;
}

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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5f7c;
}

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    list-style: none;
}

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

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

.nav-menu a {
    font-size: 1.1rem;
    color: #333;
    display: block;
    padding: 0.5rem 0;
}

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

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

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

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

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

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

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

.lead {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

/* Featured Service */
.featured-service {
    background-color: #fff;
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.featured-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.featured-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
}

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

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

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

.benefit-card h3 {
    margin-bottom: 0.75rem;
}

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

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

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

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

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

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

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f7c;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    color: #2c5f7c;
    font-weight: 600;
}

/* Statistics Section */
.statistics-section {
    background-color: #2c5f7c;
    color: #fff;
}

.statistics-section h2 {
    color: #fff;
}

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

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

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

.stat-label {
    font-size: 1.125rem;
}

/* Industries Section */
.industries-section {
    background-color: #f8f9fa;
}

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

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

.industry-item h3 {
    color: #2c5f7c;
    margin-bottom: 0.75rem;
}

/* Insights Section */
.insights-section {
    background-color: #fff;
}

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

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

.insight-block h3 {
    margin-bottom: 1rem;
}

.insight-block p {
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

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

/* CTA Section */
.cta-section {
    background-color: #e8f4f8;
    text-align: center;
}

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

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

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

/* Values Section */
.values-section {
    background-color: #fff;
}

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

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

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

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    line-height: 1.8;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

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

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

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-avatar svg {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.member-role {
    color: #2c5f7c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    line-height: 1.8;
}

/* Approach Section */
.approach-section {
    background-color: #fff;
}

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

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

.approach-block h3 {
    margin-bottom: 1rem;
}

.approach-block p {
    line-height: 1.8;
}

/* Timeline Section */
.milestones-section {
    background-color: #f8f9fa;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7c;
    min-width: 80px;
}

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

/* Trust Section */
.trust-section {
    background-color: #fff;
}

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

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

.trust-item h3 {
    margin-bottom: 0.75rem;
}

/* Story Section */
.story-section {
    background-color: #f8f9fa;
}

/* Services List */
.services-intro {
    background-color: #f8f9fa;
    text-align: center;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.services-list {
    background-color: #fff;
}

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

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.service-price {
    color: #2c5f7c;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.benefit-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

/* Service Process */
.service-process {
    background-color: #fff;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

/* Contact Info */
.contact-info-section {
    background-color: #f8f9fa;
}

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

.contact-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

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

.contact-card a {
    word-break: break-all;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* About Location */
.about-location-section {
    background-color: #fff;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

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

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

.direction-item h3 {
    margin-bottom: 0.75rem;
}

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

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

.company-details p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact FAQ */
.contact-faq-section {
    background-color: #f8f9fa;
}

/* Accessibility Section */
.accessibility-section {
    background-color: #fff;
}

.accessibility-content {
    max-width: 800px;
    margin: 0 auto;
}

.accessibility-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

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

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

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

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

.thank-you-details p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* What Next Section */
.what-next-section {
    background-color: #f8f9fa;
}

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

.step-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2c5f7c;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Resources Section */
.resources-section {
    background-color: #fff;
}

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

.resource-link {
    display: block;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f7c;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    transform: translateX(5px);
}

.resource-link h3 {
    margin-bottom: 0.5rem;
}

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

.legal-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

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

.legal-section h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-bottom: 1.25rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

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

.cookie-table {
    margin-top: 2rem;
}

.cookie-table h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cookie-table p {
    margin-bottom: 0.5rem;
}

.cookie-table ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-section p {
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #b8d4e0;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

.modal-content h2 {
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

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

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

    .menu-toggle {
        display: none;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .modal-buttons {
        flex-direction: row;
    }

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

    .featured-image {
        flex: 0 0 45%;
    }

    .featured-content {
        flex: 1;
    }

    .service-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-title {
        flex: 1;
    }

    .resources-links {
        flex-direction: row;
    }

    .resource-link {
        flex: 1;
    }
}

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

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

    .benefit-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

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

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

    .testimonial {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }
}
