/* 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, Oxygen, Ubuntu, Cantarell, 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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.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 {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    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: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

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

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

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

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

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

/* Intro Section */
.intro-section {
    background-color: #f9fafb;
}

.intro-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-visual {
    flex: 1;
}

.intro-visual svg {
    width: 100%;
    height: auto;
}

/* Philosophy Section */
.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

.service-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: #2563eb;
    font-size: 1.25rem;
}

.cta-center {
    text-align: center;
}

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

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

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

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.knowledge-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 3px solid #10b981;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #2563eb;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
}

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

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

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #ffffff;
    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 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer ul {
    list-style: none;
}

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

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

.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: 9999;
    display: none;
}

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

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

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

/* 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;
}

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

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

.cookie-modal h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

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

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

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

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

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

.lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Page - Story */
.story-section {
    background-color: #f9fafb;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #4b5563;
}

/* Mission Section */
.mission-grid {
    display: flex;
    gap: 2rem;
}

.mission-card {
    flex: 1;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

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

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

.value-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

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

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.team-avatar svg {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

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

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

/* Approach Section */
.approach-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

/* Industries Section */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.industry-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
}

.industry-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Trust Section */
.trust-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.trust-item svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

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

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

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

.service-detailed-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    position: relative;
}

.service-detailed-card.highlighted {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #10b981;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.service-description {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

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

.service-ideal {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f0f9ff;
    border-radius: 6px;
}

/* Comparison Section */
.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.comparison-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

/* Process Simple */
.process-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.process-step-simple {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.contact-card a {
    color: #2563eb;
    text-decoration: none;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.description-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.description-text {
    flex: 1;
}

.description-visual {
    flex: 1;
}

.description-visual svg {
    width: 100%;
    height: auto;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

.company-detail-item {
    display: flex;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

.company-detail-item strong {
    min-width: 180px;
    color: #1f2937;
}

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

.direction-method {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.final-cta-contact {
    background-color: #f9fafb;
    text-align: center;
}

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

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

.thank-you-icon svg {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.next-steps {
    margin: 4rem 0;
}

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

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

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

.meanwhile-section {
    margin: 4rem 0;
}

.meanwhile-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meanwhile-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.meanwhile-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.back-home {
    text-align: center;
    margin-top: 3rem;
}

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

.legal-container {
    max-width: 900px;
}

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

.legal-updated {
    color: #6b7280;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #374151;
}

.legal-section h4 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
    color: #4b5563;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: #4b5563;
}

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

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

.legal-section a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookies-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

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

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

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

    .menu-toggle {
        display: flex;
    }

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

    .hero p,
    .lead {
        font-size: 1.125rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .intro-grid,
    .description-grid {
        flex-direction: column;
    }

    .mission-grid {
        flex-direction: column;
    }

    .stats-grid,
    .process-steps {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .industry-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

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