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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --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);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

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

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

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: var(--text-dark);
}

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

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

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

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

.hero-visual {
    flex: 1;
}

.hero-visual svg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Feature Blocks */
.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-block {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-block h3 {
    margin-bottom: 0.75rem;
}

.feature-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Course Cards */
.featured-courses {
    background-color: var(--bg-light);
}

.course-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.course-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.course-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.course-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.course-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.course-highlights {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.course-highlights li {
    list-style: disc;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

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

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.philosophy-visual svg {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

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

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

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.industry-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.industry-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

/* Values Section */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

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

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

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

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

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

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 3rem;
}

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

.service-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.service-details span {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 0.25rem;
}

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

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-column {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.comparison-column.highlight {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-column h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.comparison-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-column li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.comparison-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Process Steps Grid */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-item .step-number {
    flex-shrink: 0;
}

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

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

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

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

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

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

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

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.contact-about p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
}

/* Directions */
.directions-content {
    max-width: 800px;
    margin: 0 auto;
}

.directions-content > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

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

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

/* Company Info */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-detail-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

.company-detail-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

/* Contact Reasons */
.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

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

.reason-item p {
    color: var(--text-gray);
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thank-you-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    text-align: left;
}

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

.thank-you-info ul {
    padding-left: 1.5rem;
}

.thank-you-info li {
    list-style: disc;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.meanwhile-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meanwhile-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meanwhile-item h3 {
    margin-bottom: 1rem;
}

.meanwhile-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.meanwhile-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* About Page */
.story-section .container {
    max-width: 800px;
}

.story-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.philosophy-detailed {
    background-color: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.philosophy-item p:last-child {
    margin-bottom: 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

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

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

.team-member p {
    color: var(--text-gray);
    line-height: 1.7;
}

.values-detailed {
    background-color: var(--bg-light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-detailed {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.value-detailed h3 {
    margin-bottom: 1rem;
}

.value-detailed p {
    color: var(--text-gray);
    line-height: 1.8;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

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

.impact-item p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

.section-intro-text {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.future-section .container {
    max-width: 800px;
}

.future-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

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

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

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

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

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

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

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--bg-white);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-gray);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

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

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.cookie-buttons .btn {
    padding: 0.5rem 1.25rem;
}

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

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

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

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option span {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-option p {
    margin-left: 2rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

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

.cookie-modal-buttons .btn {
    flex: 1;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0;
    }

    .mobile-toggle {
        display: none;
    }

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

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .feature-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-block {
        flex: 1;
        min-width: 250px;
    }

    .course-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .course-card {
        flex: 1;
        min-width: 300px;
    }

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

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

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

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

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

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

    .industry-item {
        flex: 1;
        min-width: 300px;
    }

    .values-content {
        flex-direction: row;
    }

    .value-item {
        flex: 1;
    }

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

    .benefit-item {
        flex: 1;
        min-width: 250px;
    }

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

    .service-header > div {
        flex: 1;
    }

    .service-price {
        flex-shrink: 0;
    }

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

    .comparison-column {
        flex: 1;
    }

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

    .step-item {
        flex: 1;
        min-width: 250px;
        flex-direction: column;
    }

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

    .contact-info,
    .contact-about {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
        min-width: 250px;
    }

    .company-details {
        flex-direction: row;
    }

    .company-detail-item {
        flex: 1;
    }

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

    .reason-item {
        flex: 1;
        min-width: 300px;
    }

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

    .thank-you-actions .btn {
        padding: 0.75rem 2rem;
    }

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

    .meanwhile-item {
        flex: 1;
    }

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

    .philosophy-item {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

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

    .value-detailed {
        flex: 1;
        min-width: 400px;
    }

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

    .impact-item {
        flex: 1;
        min-width: 250px;
    }

    .footer-content {
        flex-direction: row;
    }

    .footer-column {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

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

    h2 {
        font-size: 2.25rem;
    }

    .section-intro h2 {
        font-size: 2.5rem;
    }
}