:root {
    --color-primary: #1a5f7a;
    --color-secondary: #2d8bba;
    --color-accent: #57c5b6;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
}

.btn-outline:hover {
    background-color: var(--color-gray-100);
    border-color: var(--color-gray-400);
    color: var(--color-gray-700);
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}

.logo:hover {
    color: var(--color-dark);
}

.logo svg {
    flex-shrink: 0;
}

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

.nav-menu a {
    color: var(--color-gray-600);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-illustration {
    flex: 1;
    max-width: 400px;
}

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

/* Page Hero */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.page-hero-small {
    padding: 120px 0 40px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-gray-500);
    font-size: 1.125rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

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

.philosophy-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    color: var(--color-gray-600);
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-item svg {
    flex-shrink: 0;
}

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-primary);
    padding: 60px 0;
}

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

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

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

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

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

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
}

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.testimonial-content {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.quote-icon {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
}

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

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

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

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

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

.industries-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.industry-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.industry-item svg {
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.industry-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

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

.knowledge-content h2 {
    color: var(--color-white);
    margin-bottom: 2rem;
}

.knowledge-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.knowledge-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.knowledge-item h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.knowledge-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-dark);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
}

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

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-content .btn-primary {
    background-color: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

.cta-content .btn-primary:hover {
    background-color: var(--color-gray-100);
    border-color: var(--color-gray-100);
}

/* About Page - Story Section */
.story-section {
    background-color: var(--color-white);
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    color: var(--color-gray-600);
}

.story-illustration {
    flex: 1;
    max-width: 300px;
}

.story-illustration svg {
    width: 100%;
    height: auto;
}

/* Milestones */
.milestones-section {
    background-color: var(--color-gray-100);
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.milestones-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-secondary);
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.milestone-year {
    flex-shrink: 0;
    width: 60px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: right;
}

.milestone-content {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.milestone-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    border: 3px solid var(--color-white);
}

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

.milestone-content p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-lg);
}

.member-avatar {
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.team-member p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

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

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    background-color: var(--color-white);
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.achievements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.achievement-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
}

.achievement-item svg {
    margin-bottom: 1rem;
}

.achievement-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* Services Page */
.services-intro {
    padding: 40px 0;
    text-align: center;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

.services-main {
    padding: 40px 0 80px;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-gray-200);
}

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

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

.service-detail-icon {
    flex-shrink: 0;
}

.service-detail-title h2 {
    margin-bottom: 0.5rem;
}

.service-detail-title p {
    color: var(--color-gray-500);
    margin-bottom: 0;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-description {
    flex: 1 1 300px;
}

.service-description p {
    color: var(--color-gray-600);
}

.service-items {
    flex: 2 1 500px;
}

.service-items h3 {
    margin-bottom: 1.5rem;
}

.items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 220px;
    padding: 1.5rem;
    background-color: var(--color-gray-100);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.item-card:hover {
    background-color: var(--color-gray-200);
}

.item-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.item-card p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 0.75rem;
}

.price-range {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-secondary);
}

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

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
    padding: 1.5rem;
}

.benefit-item svg {
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

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

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    min-width: 600px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-header {
    display: flex;
    background-color: var(--color-gray-100);
}

.comparison-row {
    display: flex;
    border-top: 1px solid var(--color-gray-200);
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9375rem;
}

.header-cell {
    font-weight: 600;
    color: var(--color-dark);
}

.feature-cell {
    flex: 1.5;
    justify-content: flex-start;
    text-align: left;
    color: var(--color-gray-600);
}

.price-row {
    background-color: var(--color-gray-50);
}

.price-row .comparison-cell {
    font-weight: 600;
    color: var(--color-secondary);
}

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

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

.contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-lg);
}

.contact-card-icon {
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--color-gray-600);
}

.contact-card a {
    word-break: break-all;
}

.contact-note {
    font-size: 0.8125rem;
    color: var(--color-gray-400);
    font-style: italic;
}

.hours-list {
    margin-bottom: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-size: 0.9375rem;
}

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

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

.company-description {
    margin-bottom: 3rem;
}

.company-description h2 {
    margin-bottom: 1rem;
}

.company-description p {
    color: var(--color-gray-600);
}

.directions-section h2 {
    margin-bottom: 1.5rem;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-item {
    padding: 1.5rem;
    background-color: var(--color-gray-100);
    border-radius: var(--radius);
}

.direction-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.direction-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* Company Info Section */
.company-info-section {
    background-color: var(--color-gray-100);
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.company-info-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    max-width: 280px;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius);
    text-align: center;
}

.company-info-item h4 {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 0.5rem;
}

.company-info-item p {
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 0;
}

/* Visit Section */
.visit-section {
    background-color: var(--color-white);
    text-align: center;
}

.visit-content svg {
    margin-bottom: 1.5rem;
}

.visit-content h2 {
    margin-bottom: 0.75rem;
}

.visit-content p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--color-gray-600);
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.thank-you-note {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 3rem;
}

.thank-you-info {
    padding: 2rem;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.thank-you-info h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.thank-you-info p {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.thank-you-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-hours {
    margin-bottom: 2rem;
}

.thank-you-hours h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hours-compact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--color-gray-500);
    font-size: 0.9375rem;
}

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

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gray-200);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.legal-text p {
    color: var(--color-gray-600);
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-600);
}

.legal-text li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

/* Cookie Table */
.cookie-table {
    margin: 1.5rem 0;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.cookie-row {
    display: flex;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.cookie-header {
    background-color: var(--color-gray-100);
    font-weight: 600;
}

.cookie-row span {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.cookie-row span:first-child {
    flex: 1.2;
    font-family: monospace;
}

.cookie-row span:nth-child(2) {
    flex: 2;
}

/* Footer */
.footer {
    background-color: var(--color-gray-800);
    color: var(--color-gray-300);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-gray-700);
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-column a {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-gray-800);
    color: var(--color-white);
    padding: 1.25rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: var(--color-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner .btn-small {
    white-space: nowrap;
}

.cookie-banner .btn-outline {
    color: var(--color-white);
    border-color: var(--color-gray-600);
}

.cookie-banner .btn-outline:hover {
    background-color: var(--color-gray-700);
    border-color: var(--color-gray-500);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 20px;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: var(--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: 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

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

.cookie-modal-close:hover {
    color: var(--color-dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-header h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    background-color: var(--color-gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.cookie-option p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-300);
    border-radius: 26px;
    transition: var(--transition);
}

.cookie-toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--color-secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 0 2px rgba(45, 139, 186, 0.3);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.cookie-modal-footer .btn {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

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

    .hero-content {
        order: 2;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-illustration {
        order: 1;
        max-width: 280px;
    }

    .philosophy-section .container {
        flex-direction: column;
    }

    .story-content {
        flex-direction: column;
    }

    .story-illustration {
        order: -1;
        max-width: 200px;
        margin: 0 auto;
    }

    .milestones-timeline::before {
        left: 60px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-gray-200);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav-menu a::after {
        display: none;
    }

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

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

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

    .hero {
        padding: 120px 0 60px;
    }

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

    section {
        padding: 60px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .industry-item {
        flex: 1 1 100%;
        max-width: none;
    }

    .knowledge-item {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .value-card {
        flex: 1 1 100%;
    }

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

    .service-detail-content {
        flex-direction: column;
    }

    .item-card {
        flex: 1 1 100%;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

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

    .company-info-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .milestones-timeline::before {
        display: none;
    }

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

    .milestone-year {
        text-align: left;
        width: auto;
    }

    .milestone-content::before {
        display: none;
    }

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

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

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

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        justify-content: center;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
    }

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

    .team-member {
        flex: 1 1 100%;
        max-width: none;
    }

    .company-info-item {
        flex: 1 1 100%;
        max-width: none;
    }

    .thank-you-links {
        flex-direction: column;
    }

    .hours-compact {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .cookie-row span {
        padding: 0.5rem 1rem;
    }

    .cookie-row span:first-child {
        background-color: var(--color-gray-100);
        font-weight: 600;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px 16px;
    z-index: 10001;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}
