/* 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: #1f2937;
    background-color: #ffffff;
}

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

/* 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-container {
    padding: 0 20px;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 5rem 0;
}

.hero-content {
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

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

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

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

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

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

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

.btn-secondary {
    background-color: #e5e7eb;
    color: #1f2937;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

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

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.philosophy-icon {
    margin-bottom: 1.5rem;
}

/* Services */
.services-highlight {
    background-color: #ffffff;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    text-decoration: underline;
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-around;
}

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

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

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

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

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

.process-step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f3f4f6;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #1f2937;
}

.testimonial footer {
    font-weight: 600;
    color: #6b7280;
    font-style: normal;
}

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

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

.knowledge-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

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

.knowledge-card {
    flex: 1;
    min-width: 260px;
    padding: 1.75rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.knowledge-card h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

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

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.trust-item svg {
    margin-bottom: 1rem;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    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, padding 0.3s ease;
    padding: 0 1.5rem;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 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;
    opacity: 0.95;
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer ul {
    list-style: none;
}

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

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

/* 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: 10001;
    align-items: center;
    justify-content: center;
}

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

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

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

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

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

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

.cookie-option p {
    margin-left: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-avatar {
    margin-bottom: 1rem;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Milestones/Timeline */
.milestones-section {
    background-color: #f9fafb;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 100px;
}

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

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

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-tag {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

/* Services Page */
.services-intro {
    background-color: #f9fafb;
    padding: 2rem 0;
}

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

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

.service-full {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-tagline {
    color: #6b7280;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.service-price {
    text-align: right;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.price-period {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-includes h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

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

/* Comparison Section */
.comparison-section {
    background-color: #f9fafb;
}

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

.comparison-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.comparison-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.comparison-card ul {
    margin-top: 1rem;
    list-style: none;
}

.comparison-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

/* Process Detail */
.process-detail-section {
    background-color: #ffffff;
}

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

.process-detail-item {
    flex: 1;
    min-width: 300px;
}

.process-number {
    display: inline-block;
    background-color: #e0e7ff;
    color: #2563eb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefits Horizontal */
.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item-horizontal {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.benefit-item-horizontal svg {
    flex-shrink: 0;
}

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

/* Contact Page */
.contact-info-section {
    background-color: #ffffff;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-detail {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.about-contact-section {
    background-color: #f9fafb;
}

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

.about-contact-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.directions-section {
    background-color: #ffffff;
}

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

.directions-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.company-info-section {
    background-color: #f9fafb;
}

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

.info-block {
    flex: 1;
    min-width: 250px;
}

.info-block h3 {
    margin-bottom: 1rem;
    color: #2563eb;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

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

.thank-you-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

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

.resources-section {
    background-color: #f9fafb;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.legal-intro {
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
}

.legal-date {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.legal-content {
    background-color: #ffffff;
}

.legal-article {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

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

.legal-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-article ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

.cookie-table {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

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

    h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-header {
        flex-direction: column;
    }

    .service-price {
        text-align: left;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .benefit-item-horizontal {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }
}