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

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

a {
    color: #3b4d91;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a6db8;
}

ul {
    list-style: none;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b4d91;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3b4d91;
}

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

.nav-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e2e8f0;
    }
}

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

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

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

.hero-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.btn-primary {
    background-color: #3b4d91;
    color: #ffffff;
    border-color: #3b4d91;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3b4d91;
    border-color: #3b4d91;
}

.btn-secondary:hover {
    background-color: #3b4d91;
    color: #ffffff;
}

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

.section-light {
    background-color: #f7fafc;
}

.section-dark {
    background-color: #2d3748;
    color: #ffffff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #ffffff;
}

.section-accent {
    background-color: #edf2f7;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #2d3748;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem;
    font-size: 1.125rem;
    color: #cbd5e0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3b4d91 0%, #5a6db8 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

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

.page-intro {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.content-block h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

/* Feature Cards */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.benefit-item p {
    color: #cbd5e0;
    line-height: 1.7;
}

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

.benefit-block {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.benefit-block h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.benefit-block p {
    color: #4a5568;
    line-height: 1.7;
}

/* Quote Block */
.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-block blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.quote-block cite {
    display: block;
    font-style: normal;
    font-size: 1rem;
    color: #718096;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b4d91 0%, #5a6db8 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

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

.flow-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.flow-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3b4d91;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.flow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.flow-step p {
    color: #4a5568;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b4d91;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.9375rem;
    color: #718096;
    font-weight: 600;
}

/* Statistics */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b4d91;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #4a5568;
    font-weight: 500;
}

/* Industries/Values Grid */
.industries,
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-card,
.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industry-card h3,
.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.industry-card p,
.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

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

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

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

.faq-item.active .faq-question::after {
    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: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3b4d91 0%, #5a6db8 100%);
    color: #ffffff;
    text-align: center;
}

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

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

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

.cta-buttons .btn-primary {
    background-color: #ffffff;
    color: #3b4d91;
    border-color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background-color: #f7fafc;
    border-color: #f7fafc;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: #3b4d91;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.9375rem;
    color: #718096;
    margin-bottom: 0.75rem;
}

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

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

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #374151;
    padding: 2rem;
    border-radius: 0.75rem;
}

.team-member h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.team-role {
    font-size: 0.9375rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: #d1d5db;
    line-height: 1.7;
}

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

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b4d91;
}

.timeline-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

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

.contact-info,
.contact-details {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-block a {
    color: #3b4d91;
    font-weight: 600;
}

/* Directions */
.directions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-block {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.direction-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.direction-block p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Company Info Block */
.company-info-block {
    max-width: 800px;
    margin: 0 auto;
}

.company-info-block h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.company-info-block p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

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

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

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.thank-you-content p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

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

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2d3748;
}

.legal-text h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
}

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

.legal-text ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-text a {
    color: #3b4d91;
    text-decoration: underline;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #718096;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 3rem 0 1.5rem;
}

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

.footer-section {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-section p {
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9375rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-banner p {
    flex: 1 1 auto;
    margin: 0;
}

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

.cookie-banner button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #3b4d91;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2d3c70;
}

.cookie-settings {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-settings:hover {
    background-color: #374151;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

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

.cookie-modal h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.cookie-modal p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
}

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

.cookie-modal-buttons button {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-save {
    background-color: #3b4d91;
    color: #ffffff;
}

.cookie-save:hover {
    background-color: #2d3c70;
}

.cookie-close {
    background-color: #e2e8f0;
    color: #2d3748;
}

.cookie-close:hover {
    background-color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .benefit-item,
    .service-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

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

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

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .step {
        flex-direction: column;
    }

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

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

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

    .cookie-banner button {
        flex: 1;
    }
}

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

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

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .stats {
        gap: 2rem;
    }

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