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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-lighter: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-container {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-lighter);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 20px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    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(6px, -6px);
}

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

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.cta-button.primary:hover {
    background-color: var(--primary-dark);
}

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

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

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

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

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

.philosophy-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.philosophy-icon {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Services Highlight */
.services-highlight {
    padding: 80px 0;
}

.content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.content-text h2 {
    text-align: left;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.text-link-white {
    color: white;
    text-decoration: underline;
}

.text-link-white:hover {
    color: #e0e7ff;
}

/* Statistics */
.statistics-section {
    background-color: var(--primary-color);
    color: white;
}

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

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

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

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

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

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

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

.process-step {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

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

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.insight-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.insight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* Trust Section */
.trust-section {
    padding: 80px 0;
}

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

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

.trust-item svg {
    margin: 0 auto 20px;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

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

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

.faq-item {
    margin-bottom: 15px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    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;
    padding: 0 20px;
}

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

.faq-answer p {
    line-height: 1.7;
    color: var(--text-light);
}

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

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

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

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
}

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

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

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

.cookie-btn.settings:hover {
    background-color: #4b5563;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid #4b5563;
}

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

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

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

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

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

.cookie-option p {
    margin-top: 8px;
    margin-left: 28px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Services Page */
.services-main {
    padding: 60px 0;
}

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

.service-card {
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card.featured,
.service-card.highlighted {
    border-color: var(--primary-color);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: left;
}

.service-description {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.service-duration,
.service-format {
    background-color: var(--bg-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefits Overview */
.benefits-overview {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.benefits-grid .benefit-item {
    text-align: center;
    padding: 30px;
}

.benefits-grid .benefit-item svg {
    margin: 0 auto 20px;
}

.benefits-grid .benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefits-grid .benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
}

.comparison-table {
    margin-top: 40px;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-header .comparison-cell {
    font-weight: 600;
}

.comparison-cell {
    padding: 20px;
    line-height: 1.6;
}

.comparison-row:nth-child(even):not(.comparison-header) {
    background-color: var(--bg-light);
}

/* Process Overview Horizontal */
.process-overview {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.process-steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.process-step-h {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number-h {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step-h h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.process-step-h p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page */
.contact-main {
    padding: 60px 0;
}

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

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

.contact-block {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-block h2,
.contact-block h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: left;
}

.contact-detail {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    padding-left: 20px;
}

.contact-list li {
    padding: 5px 0;
    position: relative;
}

.contact-list li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-visual {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.info-box {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-box h3 {
    margin-bottom: 12px;
    color: var(--text-color);
}

.info-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Company Info Section */
.company-info-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.company-details p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.stat-item-small {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-label-small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.stat-value-small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.final-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 20px;
    text-align: center;
}

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

.thank-you-content svg {
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

/* Next Steps Section */
.next-steps-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

/* Meanwhile Section */
.meanwhile-section {
    padding: 60px 20px;
}

.meanwhile-content p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.meanwhile-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.meanwhile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.meanwhile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.meanwhile-card p {
    color: var(--text-light);
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-date {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: left;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-page p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* About Page Specific */
.story-section,
.values-section,
.team-section,
.achievements-section,
.approach-section,
.mission-section,
.industries-section {
    padding: 60px 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.team-description {
    max-width: 800px;
    margin: 30px auto 0;
}

.team-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    margin-top: 40px;
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:after {
    content: "";
    position: absolute;
    left: -24px;
    top: 12px;
    width: 2px;
    height: calc(100% + 28px);
    background-color: var(--border-color);
}

.timeline-item:last-child:after {
    display: none;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

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

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

.mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.industry-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.industry-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }

    .nav-menu li {
        margin: 0 10px;
    }

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

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

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

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

    .content-split {
        flex-direction: row;
        align-items: flex-start;
    }

    .content-text,
    .content-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

    .insights-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .trust-item {
        flex: 1 1 calc(33.333% - 20px);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-column {
        flex: 1;
    }

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

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

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

    .comparison-cell {
        flex: 1;
    }

    .comparison-cell:first-child {
        flex: 2;
    }

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

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

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

    .contact-info {
        flex: 1.2;
    }

    .contact-visual {
        flex: 1;
    }

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

    .stat-item-small {
        flex: 1 1 calc(50% - 10px);
    }

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

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

    .step-card {
        flex: 1 1 calc(33.333% - 16.67px);
    }

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

    .meanwhile-card {
        flex: 1;
    }

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

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

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

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

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

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

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

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

    .philosophy-item {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .trust-item {
        flex: 1;
    }

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

    .process-step-h {
        flex: 1;
    }

    .stat-item-small {
        flex: 1 1 calc(25% - 15px);
    }

    .step-card {
        flex: 1 1 calc(33.333% - 16.67px);
    }

    .value-card {
        flex: 1 1 calc(33.333% - 16.67px);
    }

    .industry-item {
        flex: 1 1 calc(33.333% - 13.33px);
    }
}