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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wrapper.narrow {
    max-width: 900px;
}

.content-wrapper.centered {
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

.cta-secondary {
    display: inline-block;
    background: #f1f5f9;
    color: #1e293b;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.cta-link {
    color: #2563eb;
    font-weight: 500;
    margin-left: 1.5rem;
}

/* Approach Section */
.approach-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f172a;
}

.approach-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.approach-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Course Grid - Card-Based Layout */
.courses-preview {
    padding: 5rem 0;
}

.course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.course-image {
    height: 240px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-level {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.course-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.course-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.duration {
    color: #64748b;
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.btn-enroll {
    background: #2563eb;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-enroll:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials-section {
    background: #0f172a;
    color: #ffffff;
    padding: 5rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #e2e8f0;
}

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

.testimonial-author strong {
    color: #ffffff;
    font-weight: 600;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Value Section */
.value-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.split-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-list {
    list-style: none;
    margin-bottom: 2rem;
}

.value-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 1.05rem;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.2rem;
}

.method-list {
    list-style: none;
    margin-top: 1.5rem;
}

.method-list li {
    margin-bottom: 1.2rem;
    color: #334155;
    line-height: 1.7;
}

.method-list strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.3rem;
}

.split-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Enrollment Form */
.enrollment-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
}

.enrollment-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #1e293b;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.team-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: #0f172a;
    padding: 0 1.5rem;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}

.team-card p:last-child {
    padding: 0 1.5rem 2rem;
    color: #64748b;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

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

.stat-card {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 500;
}

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

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.contact-detail p {
    color: #475569;
    line-height: 1.7;
}

.detail-note {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

.enrollment-prompt {
    padding: 4rem 0;
}

.enrollment-prompt h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.enrollment-prompt p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Services Page */
.services-main {
    padding: 4rem 0;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    gap: 2rem;
}

.service-header-content {
    flex: 1;
}

.service-level {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.service-tagline {
    font-size: 1.1rem;
    color: #64748b;
}

.service-price-box {
    text-align: right;
}

.service-price-box .price {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.price-detail {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.service-body {
    display: flex;
    gap: 3rem;
    padding: 2.5rem;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #0f172a;
}

.service-details p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-details ul li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
}

.service-details ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.service-meta span {
    color: #475569;
    font-size: 0.95rem;
}

.guarantee-section {
    background: #fef3c7;
    padding: 3rem 0;
}

.guarantee-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.guarantee-note {
    font-style: italic;
    color: #78716c;
    margin-top: 1rem;
}

.enroll-cta-section {
    padding: 5rem 0;
}

.enroll-cta-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.enroll-cta-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 5rem 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 0;
}

.thanks-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
}

.thanks-info {
    background: #dbeafe;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.course-confirmation {
    color: #1e40af;
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-support {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-support h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.thanks-support p {
    color: #64748b;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-page h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
}

.cookie-table td {
    color: #475569;
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #64748b;
    color: #ffffff;
}

.btn-reject:hover {
    background: #475569;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }

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

    .course-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .content-split.reverse {
        flex-direction: column;
    }

    .service-body {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2,
    .approach-section h2,
    .values-section h2,
    .team-section h2 {
        font-size: 2rem;
    }

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

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

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

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

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

    .service-price-box {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

    .content-wrapper {
        padding: 3rem 1.5rem;
    }
}
