/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.logo:hover {
    color: #3498db;
}

/* Navigation */
.nav {
    display: none;
}

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

.nav-list a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #3498db;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.nav.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.nav.active .nav-list a {
    font-size: 1.5rem;
}

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

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

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

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

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

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

.page-hero .lead {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 600;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #546e7a;
}

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

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

/* Company Intro */
.company-intro {
    background-color: #f8f9fa;
}

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-item svg {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.value-item p {
    color: #546e7a;
    line-height: 1.6;
}

/* Featured Services */
.featured-services {
    background-color: #f8f9fa;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #546e7a;
    line-height: 1.7;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.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: 1rem;
    opacity: 0.9;
}

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

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

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
}

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

.step p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #546e7a;
    font-weight: 600;
}

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

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.industry-item p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #3498db;
    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: #546e7a;
    line-height: 1.7;
}

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

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

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

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

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.btn-outline:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

/* 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 h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

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

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

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

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

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

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

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

.cookie-content p {
    line-height: 1.6;
    margin: 0;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    padding: 1rem;
}

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

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

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

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #546e7a;
    line-height: 1.5;
}

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

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

.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-header h2 {
    margin-bottom: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.service-detail p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #546e7a;
}

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

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

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

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

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

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

.process-stage h3 {
    margin-bottom: 0.75rem;
}

.process-stage p {
    color: #546e7a;
    line-height: 1.7;
}

/* Service Comparison */
.service-comparison {
    background-color: #f8f9fa;
}

.comparison-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

.comparison-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.comparison-list strong {
    color: #2c3e50;
}

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

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

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

.contact-detail p {
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-about {
    background-color: #f8f9fa;
}

.contact-about p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

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

.directions-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.directions-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

/* Company Details */
.company-details {
    background-color: #f8f9fa;
}

.company-info p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #546e7a;
}

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

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

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

.thank-you-icon {
    color: #27ae60;
    margin: 0 auto 2rem;
}

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

.thank-you p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #546e7a;
}

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

/* Next Steps */
.next-steps {
    background-color: #f8f9fa;
}

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

.step-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.step-item h3 {
    margin-bottom: 1rem;
}

.step-item p {
    color: #546e7a;
    line-height: 1.7;
}

/* Explore Section */
.explore {
    background-color: #ffffff;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.explore-item p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.explore-item a {
    font-weight: 600;
}

/* About Page */
.story {
    background-color: #ffffff;
}

.approach {
    background-color: #f8f9fa;
}

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

.approach-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.approach-item p {
    color: #546e7a;
    line-height: 1.7;
}

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

.team-intro {
    max-width: 900px;
    margin: 0 auto;
}

.team-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

/* Values Detail */
.values-detail {
    background-color: #f8f9fa;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-detail h3 {
    margin-bottom: 1rem;
}

.value-detail p {
    color: #546e7a;
    line-height: 1.8;
}

/* Milestones */
.milestones {
    background-color: #ffffff;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.milestone {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

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

.milestone-content p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-item svg {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.trust-item p {
    color: #546e7a;
    line-height: 1.7;
}

/* Insights */
.insights {
    background-color: #ffffff;
}

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

.insight-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #546e7a;
}

.legal-content strong {
    color: #2c3e50;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cookie-table h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.cookie-table h3:first-child {
    margin-top: 0;
}

.cookie-table p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

    .menu-toggle {
        display: none;
    }

    .nav {
        display: block;
    }

    .philosophy-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .philosophy-text {
        flex: 1.2;
    }

    .philosophy-values {
        flex: 1;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

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

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

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

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }

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

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

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

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

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

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

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

    .step-item {
        flex: 1;
    }

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

    .explore-item {
        flex: 1;
    }

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

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

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

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

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

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

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

    .stat-item {
        flex: 1;
    }

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

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

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

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

    .contact-detail {
        flex: 1 1 calc(33.333% - 2rem);
    }

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

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