/* Base Reset & Variables */
:root {
    --primary: #6B4E9E;
    --primary-dark: #5A3D8C;
    --primary-light: #9B7BC7;
    --secondary: #f0edf5;
    --text: #2d2d2d;
    --text-light: #666;
    --text-muted: #888;
    --white: #fff;
    --bg: #fafafa;
    --bg-alt: #f5f3f8;
    --border: #e5e5e5;
    --shadow: 0 2px 8px rgba(107, 78, 158, 0.1);
    --shadow-lg: 0 4px 20px rgba(107, 78, 158, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

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

ul, ol {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text);
    font-weight: 600;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

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

.nav {
    padding: 15px 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: 600;
    color: var(--primary);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.hero-content {
    flex: 1;
}

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

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.hero-illustration {
    width: 100%;
    max-width: 350px;
}

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

.page-hero h1 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

.philosophy-content {
    flex: 1.5;
}

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

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

.philosophy-icon {
    width: 200px;
    height: 200px;
}

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

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

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

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

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

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

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

.process-step h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.testimonials-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

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

.author-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Knowledge Section */
.knowledge-section {
    background: var(--bg-alt);
}

.knowledge-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.knowledge-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.knowledge-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.knowledge-item h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.knowledge-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.values-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
}

.value-item h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section, .services-faq, .contact-faq {
    background: var(--bg);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    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;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

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

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

.story-text {
    flex: 1.5;
}

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

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

.story-illustration {
    width: 100%;
    max-width: 250px;
}

/* Milestones */
.milestones-section {
    background: var(--bg-alt);
}

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

.milestone-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.milestone-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.milestone-content h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.milestone-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.team-members {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius-lg);
}

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

.team-member h3 {
    color: var(--primary-dark);
    margin-bottom: 4px;
}

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

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.approach-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
}

.approach-block h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.approach-block p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Credentials Section */
.credentials-section {
    background: var(--white);
}

.credentials-list {
    max-width: 700px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Publications Section */
.publications-section {
    background: var(--bg);
}

.publications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.publication-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
}

.publication-year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.publication-item h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.publication-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Services Page */
.services-main {
    background: var(--bg);
    padding-top: 40px;
}

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

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: var(--bg-alt);
}

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

.service-title-block {
    flex: 1;
}

.service-title-block h2 {
    text-align: left;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.service-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-body {
    padding: 30px;
}

.service-body > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
}

.service-includes li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary-light);
    border-radius: 50%;
}

.service-includes li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
}

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

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--primary-dark);
}

.comparison-table tr:hover {
    background: var(--bg);
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
}

.benefit-item h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Process Detailed */
.process-detailed {
    background: var(--white);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Page */
.contact-main {
    background: var(--bg);
    padding-top: 40px;
}

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

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}

.contact-card h2 {
    text-align: left;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

.contact-card a {
    color: var(--primary);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.hours-list {
    margin-top: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.contact-details-block {
    flex: 1.2;
}

.about-contact, .directions {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.about-contact h2, .directions h2 {
    text-align: left;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direction-item h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.direction-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.company-info-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
}

.company-info-item h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

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

/* Closing Section */
.closing-section {
    background: var(--bg-alt);
    text-align: center;
}

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

.closing-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
}

.closing-content h2 {
    margin-bottom: 16px;
}

.closing-content p {
    color: var(--text-light);
}

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

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thank-you-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.thank-you-info {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.thank-you-info h2 {
    text-align: left;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.thank-you-info ul {
    list-style: disc;
    padding-left: 20px;
}

.thank-you-info li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Meanwhile Section */
.meanwhile-section {
    background: var(--bg);
    padding-bottom: 100px;
}

.meanwhile-cards {
    display: flex;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.meanwhile-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.meanwhile-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

/* Legal Pages */
.legal-hero {
    padding: 50px 0;
    background: var(--bg-alt);
    text-align: center;
}

.legal-hero h1 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.legal-hero p {
    color: var(--text-muted);
    margin-bottom: 0;
}

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

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

.legal-text h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.legal-text h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg);
    font-weight: 600;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

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

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

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

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

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

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

.cookie-option:last-child {
    margin-bottom: 0;
}

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

.cookie-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 8px;
    border-radius: 4px;
}

.cookie-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid var(--border);
}

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

    .hero .container,
    .philosophy-section .container,
    .story-content {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-content h2,
    .story-text h2,
    .approach-content h2,
    .knowledge-content h2 {
        text-align: center;
    }

    .hero-visual,
    .philosophy-visual,
    .story-visual {
        order: -1;
    }

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

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

    .footer-brand {
        max-width: none;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 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(--border);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

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

    .hero {
        padding: 60px 0;
    }

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

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

    .service-title-block h2 {
        text-align: center;
    }

    .milestone-item {
        flex-direction: column;
        gap: 12px;
    }

    .milestone-year {
        width: auto;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .meanwhile-cards {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

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

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

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

    .thank-you-actions .btn {
        width: 100%;
    }
}
