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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --secondary-dark: #475569;
    --accent-color: #10b981;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

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 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    display: block;
}

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

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

.nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.nav.active {
    left: 0;
}

.nav-list {
    list-style: none;
    padding: 20px 0;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 15px 30px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.2s;
}

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

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

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

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.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: white;
    border-color: white;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

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

section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.section-intro,
.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

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

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

.trust-item img {
    margin-bottom: 15px;
}

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

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

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

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.overview-visual {
    display: flex;
    justify-content: center;
}

.overview-visual img {
    max-width: 100%;
    height: auto;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s;
}

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

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-text p {
    margin-bottom: 20px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

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

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

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.step-number {
    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;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
}

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

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

.testimonial {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.testimonial-text p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

/* Industries Served */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.industry-item img {
    flex-shrink: 0;
}

.industry-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--text-medium);
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefit-icon {
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-medium);
}

/* Knowledge Section */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.knowledge-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.knowledge-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.knowledge-card p {
    color: var(--text-medium);
}

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

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

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 6px 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: 20px;
}

.cookie-content p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

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

.cookie-modal-content {
    background-color: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-medium);
    cursor: pointer;
    line-height: 1;
}

.cookie-modal-body {
    padding: 20px;
}

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

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

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

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

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

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Page - Story Section */
.story-section {
    padding: 60px 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-visual img {
    max-width: 100%;
    height: auto;
}

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

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

.value-card {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    margin-bottom: 20px;
}

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

.value-card p {
    color: var(--text-medium);
}

/* Team Section */
.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-medium);
}

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

.team-member {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.member-info h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

/* Approach Section */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.approach-point img {
    flex-shrink: 0;
}

.approach-point h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.approach-point p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

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

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

.achievement-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Commitment Section */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.commitment-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.commitment-item img {
    flex-shrink: 0;
}

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

/* Services Page */
.services-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

.service-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.services-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

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

.service-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-main h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

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

.benefit-item {
    text-align: center;
    padding: 25px;
}

.benefit-item img {
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* Process Steps List */
.steps-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.step-num {
    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;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* Comparison Section */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    padding: 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.comparison-col.highlighted {
    border-color: var(--primary-color);
    border-width: 2px;
    background-color: var(--bg-light);
}

.comparison-col h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.comparison-pro::before {
    background-color: var(--accent-color);
}

.comparison-con::before {
    background-color: #ef4444;
}

.comparison-neutral::before {
    background-color: var(--secondary-color);
}

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

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

.contact-block {
    margin-bottom: 30px;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: left;
}

.contact-detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-detail img {
    flex-shrink: 0;
}

.contact-detail h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-detail p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

.detail-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 10px;
}

.hours-list {
    list-style: none;
    margin-bottom: 10px;
}

.hours-list li {
    padding: 8px 0;
    color: var(--text-medium);
}

.contact-description h2 {
    text-align: left;
    margin-bottom: 20px;
}

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

.contact-cta-box {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--radius-lg);
    margin-top: 30px;
}

.contact-cta-box h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-cta-box p {
    margin-bottom: 20px;
    opacity: 0.95;
}

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

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

.direction-item {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.direction-item img {
    margin-bottom: 20px;
}

.direction-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.direction-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Company Info Section */
.company-info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.info-block {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.info-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.additional-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
}

.additional-item img {
    margin-bottom: 20px;
}

.additional-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.additional-item p {
    color: var(--text-medium);
}

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

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

.thank-you-icon {
    margin-bottom: 30px;
}

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

.thank-you-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

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

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

.step-card {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-medium);
}

/* Preparation Section */
.preparation-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.preparation-list {
    list-style: none;
    margin: 30px 0;
}

.preparation-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.preparation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.preparation-note {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 0.875rem;
    opacity: 0.9;
}

.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-dark);
    text-align: left;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.legal-text strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Cookie Table */
.cookie-table {
    margin: 30px 0;
}

.cookie-table h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 0.875rem;
}

.cookie-table th {
    background-color: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-medium);
}

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

    .nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        overflow-y: visible;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        padding: 0;
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        padding: 10px 15px;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background-color: transparent;
    }

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

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

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

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

    .overview-content {
        flex-direction: row;
        align-items: center;
    }

    .overview-text {
        flex: 1;
    }

    .overview-visual {
        flex: 0 0 400px;
    }

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

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

    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-stats {
        flex: 0 0 300px;
    }

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

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

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

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

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

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

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

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

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

    .knowledge-card {
        flex: 1 1 calc(50% - 12.5px);
        min-width: 300px;
    }

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

    .footer-col {
        flex: 1 1 calc(25% - 30px);
        min-width: 200px;
    }

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

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

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 0 0 400px;
    }

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

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

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

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

    .approach-content {
        flex-direction: row;
        align-items: center;
    }

    .approach-text {
        flex: 1;
    }

    .approach-points {
        flex: 0 0 350px;
    }

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

    .achievement-item {
        flex: 1 1 calc(33.333% - 16.67px);
        min-width: 200px;
    }

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

    .comparison-col {
        flex: 1;
    }

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

    .contact-info {
        flex: 0 0 400px;
    }

    .contact-description {
        flex: 1;
    }

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

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

    .company-info-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
    }

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

    .additional-item {
        flex: 1 1 calc(33.333% - 16.67px);
        min-width: 250px;
    }

    .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);
        min-width: 250px;
    }

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

    .service-price {
        flex-shrink: 0;
        text-align: right;
    }
}

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

    section h2 {
        font-size: 2.25rem;
    }

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

    .trust-item {
        flex: 1 1 auto;
    }

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

    .service-card {
        flex: 1 1 auto;
    }

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

    .step {
        flex: 1 1 auto;
    }

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

    .testimonial {
        flex: 1 1 auto;
    }

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

    .benefit-card {
        flex: 1 1 calc(33.333% - 16.67px);
        min-width: 250px;
    }

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

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 16.67px);
        min-width: 280px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .mobile-menu-toggle,
    .cta-section,
    .hero-actions,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }

    h3 {
        font-size: 14pt;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}