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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
    color: #1a1a1a;
}

h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.375rem;
    color: #2a2a2a;
}

h4 {
    font-size: 1.125rem;
    color: #2a2a2a;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #357abd;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
}

.nav {
    display: none;
}

.nav a {
    margin-left: 2rem;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #4a90e2;
}

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

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

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

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

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

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1rem 20px;
}

.nav.active a {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

.btn-primary:hover {
    background-color: #357abd;
    color: #fff;
}

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

.btn-secondary:hover {
    background-color: #27ae60;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #4a90e2;
    color: #4a90e2;
}

.btn-outline:hover {
    background-color: #4a90e2;
    color: #fff;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

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

section:nth-child(even) {
    background-color: #f8f9fa;
}

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

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

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 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 4px 20px rgba(0,0,0,0.12);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #4a90e2;
    margin-bottom: 0.75rem;
}

/* Statistics */
.stats {
    background-color: #4a90e2;
    color: #fff;
}

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

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

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

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

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

.process-step {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.benefit-item h3 {
    color: #4a90e2;
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #4a90e2;
}

/* Knowledge Grid */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #4a90e2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.knowledge-card h3 {
    color: #2a2a2a;
    margin-bottom: 1rem;
}

/* Industries */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.industry-item h3 {
    color: #2ecc71;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4a90e2;
    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;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #555;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    color: #4a90e2;
    margin-bottom: 0.75rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #4a90e2;
}

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 4rem;
    height: 4rem;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h3 {
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

/* Service Detail */
.service-detail {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-title h2 {
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: #666;
    font-size: 1.0625rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.price-note {
    font-size: 0.875rem;
    color: #888;
}

.service-description p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.benefit-block h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-block h2 {
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

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

.contact-item h3 {
    color: #2a2a2a;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #4a90e2;
}

/* Directions */
.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.direction-block h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

/* Company Data */
.company-data {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.data-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.data-item h3 {
    color: #4a90e2;
    margin-bottom: 0.75rem;
}

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

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

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

.thank-you-message {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 3rem;
}

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

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

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

.meanwhile {
    margin-top: 4rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.info-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 1.5rem;
}

.legal-text li {
    color: #444;
    line-height: 1.7;
}

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

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

.cookie-table th {
    background-color: #4a90e2;
    color: #fff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Team Highlights */
.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.team-highlight h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

/* Trust Grid */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.trust-item h3 {
    color: #2ecc71;
    margin-bottom: 0.75rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

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

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

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

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

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

.footer-nav a {
    color: #ecf0f1;
}

.footer-nav a:hover {
    color: #4a90e2;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    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-color: rgba(0,0,0,0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.cookie-modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.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;
    flex-wrap: wrap;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        background: none;
    }

    .nav a {
        border: none;
        padding: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-block {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-price {
        align-items: flex-end;
        text-align: right;
    }

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

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

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

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

    .quick-links {
        flex-direction: row;
        justify-content: center;
    }

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

    .info-card {
        flex: 1;
    }

    .team-highlights {
        flex-direction: row;
    }

    .team-highlight {
        flex: 1;
    }

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

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

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

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

    .service-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .process-step {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

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

    .knowledge-card {
        flex: 1;
    }

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

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

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

    .step-card {
        flex: 1;
    }
}