/* ========================================
   Global Styles & CSS Variables
   ======================================== */
:root {
    /* Color Palette - Educational Excellence Theme */
    --primary-color: #2C5F2D;
    --primary-dark: #1A3A1B;
    --primary-light: #4A9B4D;
    --secondary-color: #D97706;
    --secondary-dark: #B45309;
    --accent-color: #7C3AED;
    --accent-light: #A78BFA;
    
    /* Neutral Colors */
    --dark-bg: #0F172A;
    --dark-text: #1E293B;
    --mid-gray: #64748B;
    --light-gray: #F1F5F9;
    --white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Courier Prime', monospace;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1320px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-bg);
}

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

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

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-content i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie.accept:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-cookie.decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie.decline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* ========================================
   Navigation
   ======================================== */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-bg);
}

.brand-highlight {
    color: var(--primary-color);
}

.brand-year {
    font-size: 12px;
    font-family: var(--font-mono);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 500;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(42, 95, 45, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    transition: var(--transition);
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--primary-color);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* ========================================
   Hero Section - Asymmetric Layout
   ======================================== */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2E9 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(30px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--dark-bg);
}

.hero-title .highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
    border-radius: 3px;
}

.hero-description {
    font-size: 20px;
    color: var(--mid-gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 95, 45, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 95, 45, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: var(--secondary-color);
}

.stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
}

.stat-item span {
    display: block;
    font-size: 14px;
    color: var(--mid-gray);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    left: -30px;
}

.floating-card.card-2 {
    bottom: 30px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

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

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   Timeline Section
   ======================================== */
.timeline-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.section-subtitle {
    font-size: 20px;
    color: var(--mid-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 150px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0.2);
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: -100px;
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -100px;
}

.timeline-content {
    flex: 1;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 0 60px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-content h3 i {
    color: var(--primary-color);
}

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

/* ========================================
   Skills Map Section
   ======================================== */
.skills-map-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.skills-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.skills-map-section .section-title,
.skills-map-section .section-subtitle {
    color: var(--white);
}

.skills-map {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.skill-node {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.skill-node:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.4);
}

.skill-node.node-large {
    min-width: 200px;
}

.skill-node.node-medium {
    min-width: 160px;
}

.skill-node.node-small {
    min-width: 120px;
}

.skill-node i {
    font-size: 48px;
}

.skill-node[data-category="programming"] i {
    color: var(--primary-light);
}

.skill-node[data-category="design"] i {
    color: var(--secondary-color);
}

.skill-node span {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

/* ========================================
   Learning Philosophy Section
   ======================================== */
.philosophy-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    position: relative;
}

.philosophy-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(42, 95, 45, 0.05) 100%);
}

.philosophy-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    box-shadow: 0 0 0 20px rgba(217, 119, 6, 0.3);
}

.philosophy-content {
    padding-left: 40px;
}

.philosophy-manifesto {
    margin-top: 40px;
}

.manifesto-item {
    margin-bottom: 40px;
    padding-left: 80px;
    position: relative;
}

.manifesto-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
}

.manifesto-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.manifesto-item p {
    color: var(--mid-gray);
    line-height: 1.8;
}

/* ========================================
   Course Discovery Section
   ======================================== */
.course-discovery-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.course-discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.course-discovery-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 700px;
}

.course-discovery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-discovery-card:hover .card-background img {
    transform: scale(1.1);
}

.card-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
}

.card-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--white);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.programming-card .card-icon {
    color: var(--primary-color);
}

.design-card .card-icon {
    color: var(--secondary-color);
}

.card-content h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.card-content > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-highlights {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.card-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.card-highlights i {
    color: var(--secondary-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--dark-bg);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-card-action:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* ========================================
   Educational Values Section
   ======================================== */
.values-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-bg) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ========================================
   Visual Stats Section
   ======================================== */
.stats-visual-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--light-gray);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(42, 95, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.1) 0%, transparent 50%);
}

.stat-visual-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-bottom: 30px;
}

.stat-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-visual-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--mid-gray);
    font-weight: 500;
}

/* ========================================
   Student Mindset Section
   ======================================== */
.mindset-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.mindset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mindset-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--light-gray);
    transition: var(--transition);
}

.mindset-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mindset-graphic {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.mindset-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.mindset-item p {
    color: var(--mid-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.abstract-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.abstract-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.abstract-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    border: none;
}

.btn-cta-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
}

.btn-cta-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.5);
    color: var(--white);
}

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

.btn-cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
}

.trust-badge i {
    font-size: 24px;
    color: var(--secondary-color);
}

/* ========================================
   Trust & Compliance Section
   ======================================== */
.trust-compliance-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.trust-intro {
    font-size: 18px;
    color: var(--mid-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.compliance-list {
    margin-top: 30px;
}

.compliance-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.compliance-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.compliance-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.compliance-item p {
    color: var(--mid-gray);
    line-height: 1.7;
    margin: 0;
}

.policy-links-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.policy-links-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.policy-links-list {
    list-style: none;
}

.policy-links-list li {
    margin-bottom: 15px;
}

.policy-links-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: var(--light-gray);
    border-radius: 12px;
    color: var(--dark-text);
    transition: var(--transition);
}

.policy-links-list a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.policy-links-list a i:first-child {
    margin-right: 12px;
}

.policy-links-list a i:last-child {
    font-size: 12px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-brand span {
    color: var(--secondary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

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

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .course-discovery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        width: 60px;
    }
    
    .timeline-year::after {
        left: 15px !important;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
    
    .philosophy-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .course-discovery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .floating-card.card-1,
    .floating-card.card-2 {
        position: static;
        margin: 10px 0;
    }
}


.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}