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

:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1e3f75;
    --primary-light: #4a7bc8;
    --secondary-color: #5d7a99;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f4f7fb;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --success-color: #2d8659;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

    .nav {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 65px);
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        padding: 2rem;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav a {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    margin-top: 3rem;
}

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

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

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-text {
    background-color: transparent;
    color: var(--text-medium);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* Company Philosophy */
.company-philosophy {
    background-color: var(--bg-white);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    flex: 1 1 300px;
    text-align: center;
}

.philosophy-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Highlight */
.services-highlight {
    background-color: var(--bg-light);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: white;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-around;
}

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

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

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

/* Process Section */
.process-section {
    background-color: var(--bg-white);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1 1 250px;
    padding: 1.5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    background-color: var(--bg-light);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-item {
    flex: 1 1 calc(33.333% - 1rem);
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.industry-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-white);
}

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

.testimonial {
    flex: 1 1 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    flex: 1 1 300px;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: var(--bg-white);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.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;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

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

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-section {
    flex: 1 1 200px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.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.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 1rem;
}

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

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cookie-option span {
    color: var(--text-medium);
    line-height: 1.5;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-intro {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-story {
    background-color: var(--bg-white);
}

.content-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.column-text {
    flex: 1 1 500px;
}

.column-text h2 {
    margin-bottom: 1.5rem;
}

.column-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.column-visual {
    flex: 1 1 300px;
}

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

/* Values Section */
.values-section {
    background-color: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background-color: var(--bg-white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 250px;
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline */
.achievements-section {
    background-color: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-light);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Approach Section */
.approach-section {
    background-color: var(--bg-white);
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--bg-light);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.reason-item {
    flex: 1 1 300px;
    text-align: center;
}

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.reason-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reason-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Page */
.services-list {
    background-color: var(--bg-white);
}

.service-detail {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-detail-info h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
}

.service-detail-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-content strong {
    color: var(--text-dark);
}

/* Service Benefits */
.service-benefits {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
}

.benefit-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Comparison Table */
.process-comparison {
    background-color: var(--bg-white);
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-column {
    flex: 1 1 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-column h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Workflow Section */
.workflow-section {
    background-color: var(--bg-light);
}

.workflow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    text-align: center;
    background-color: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
}

.workflow-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.workflow-step h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.workflow-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Services */
.faq-services {
    background-color: var(--bg-white);
}

/* Contact Page */
.contact-info-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-main {
    flex: 2 1 500px;
}

.contact-sidebar {
    flex: 1 1 300px;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-item-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-box h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-steps {
    list-style: none;
    counter-reset: step-counter;
}

.contact-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Office Section */
.office-section {
    background-color: var(--bg-light);
}

.office-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.office-info {
    flex: 1 1 500px;
}

.office-info h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.office-info p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.directions-list {
    list-style: none;
    margin-top: 1rem;
}

.directions-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.office-note {
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.office-visual {
    flex: 1 1 300px;
}

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

/* Company Details */
.company-details-section {
    background-color: var(--bg-white);
}

.company-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.company-detail-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.company-detail-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.company-detail-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.company-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-detail-item a:hover {
    text-decoration: underline;
}

/* FAQ Contact */
.faq-contact {
    background-color: var(--bg-light);
}

/* Thank You Page */
.thankyou-section {
    background-color: var(--bg-white);
    text-align: center;
    padding: 5rem 0;
}

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

.thankyou-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thankyou-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1 1 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-item .step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.info-section {
    background-color: var(--bg-light);
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    flex: 1 1 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-medium);
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Cookies Table */
.cookies-table {
    margin-top: 2rem;
}

.cookie-row {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.cookie-name {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cookie-details p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

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

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

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

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

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

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

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

    section h2 {
        font-size: 1.75rem;
    }

    .philosophy-grid,
    .services-cards,
    .stats-grid,
    .process-steps,
    .industries-grid,
    .testimonials-grid,
    .trust-grid,
    .values-grid,
    .team-grid,
    .reasons-grid,
    .benefits-grid,
    .comparison-table,
    .workflow-steps {
        gap: 1.5rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-column,
    .workflow-step,
    .industry-item,
    .value-item,
    .benefit-item,
    .company-detail-item {
        flex: 1 1 100%;
    }

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

    .timeline-content {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--primary-light);
        padding-top: 1rem;
    }

    .contact-grid {
        gap: 2rem;
    }

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

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

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    section h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

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

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }
}