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

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

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-list {
    display: none;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

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

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

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

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

/* Sections */
section {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-intro p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-icon svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.process-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.benefit-icon svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 10px;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #95a5a6;
    font-size: 14px;
}

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

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 24px;
    color: #3498db;
    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 20px 20px;
    color: #5a6c7d;
}

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

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px;
}

.trust-item svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

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

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

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

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

.cookie-modal-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-option p {
    margin-top: 5px;
    font-size: 14px;
    color: #5a6c7d;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

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

.page-hero h1 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

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

.content-block p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8edf2;
    position: absolute;
    top: 20px;
    right: 20px;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.team-icon svg {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

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

/* Approach Section */
.approach-section {
    background-color: #f8f9fa;
}

/* Achievements Section */
.achievements-section {
    background-color: #ffffff;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.achievement-item svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Insights Section */
.insights-section {
    background-color: #f8f9fa;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insight-item {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

/* Why Us Section */
.why-us-section {
    background-color: #ffffff;
}

/* Services List */
.services-list {
    background-color: #f8f9fa;
}

.service-detailed {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

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

.price-label {
    font-size: 14px;
    color: #95a5a6;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.price-unit {
    font-size: 14px;
    color: #5a6c7d;
}

.service-details p {
    margin-bottom: 20px;
}

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

.service-includes li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

/* Process Comparison */
.process-comparison {
    background-color: #f8f9fa;
}

.comparison-table {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 15px;
}

.comparison-header {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 700;
}

.comparison-positive {
    color: #2ecc71;
    font-weight: 600;
}

/* Service Steps */
.service-steps {
    background-color: #ffffff;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    position: relative;
    padding-left: 70px;
}

.step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

/* Contact Info */
.contact-info {
    background-color: #f8f9fa;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

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

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direction-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.direction-card p {
    margin-bottom: 15px;
}

/* Company Info Section */
.company-info-section {
    background-color: #f8f9fa;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-detail-item {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
}

.company-detail-item p {
    line-height: 1.8;
}

/* Working Hours */
.working-hours-detail {
    background-color: #ffffff;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

/* Thank You Section */
.thankyou-section {
    padding: 80px 0;
    text-align: center;
}

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

.thankyou-icon svg {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.thankyou-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thankyou-info {
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Useful Links */
.useful-links {
    background-color: #f8f9fa;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-card {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
}

.link-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    margin-top: 30px;
}

.legal-section h3 {
    margin-top: 25px;
    font-size: 20px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin-bottom: 15px;
    margin-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.cookie-table table {
    width: 100%;
    margin-bottom: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table tr {
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table tr:last-child {
    border-bottom: none;
}

.cookie-table td {
    padding: 12px 15px;
}

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

.contact-intro {
    background-color: #ffffff;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-list {
        display: flex;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .hero-content {
        text-align: left;
        margin-bottom: 0;
        flex: 1;
        max-width: 50%;
    }

    .hero-cta {
        flex-direction: row;
    }

    .hero-visual {
        flex: 1;
        max-width: 45%;
    }

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

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

    .service-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .stat-item {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .process-step {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .testimonial-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .industry-card {
        flex: 1;
        min-width: calc(50% - 10px);
    }

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

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-direction: row;
        width: auto;
    }

    .cookie-modal-buttons {
        flex-direction: row;
    }

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

    .value-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .team-member {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

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

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

    .benefit-card {
        flex: 1;
        min-width: calc(50% - 10px);
    }

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

    .comparison-cell {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
        min-width: calc(50% - 10px);
    }

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

    .contact-card {
        flex: 1;
        min-width: calc(33.333% - 20px);
    }

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

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-detail-item {
        flex: 1;
        min-width: calc(33.333% - 20px);
    }

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

    .thankyou-actions {
        flex-direction: row;
        justify-content: center;
    }

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

@media (min-width: 1024px) {
    .service-card {
        min-width: calc(33.333% - 20px);
    }

    .stat-item {
        min-width: calc(25% - 22.5px);
    }

    .process-step {
        min-width: calc(33.333% - 20px);
    }

    .testimonial-card {
        min-width: calc(33.333% - 20px);
    }
}