/* === BASE STYLES === */
:root {
    --color-primary: #0A192F;
    --color-secondary: #1F2937;
    --color-accent-1: #06B6D4;
    --color-accent-2: #F59E0B;
    --color-accent-3: #8B5CF6;
    --color-dark: #121212;
    --color-dark-2: #1E1E1E;
    --color-dark-3: #2D3748;
    --color-light: #FFFFFF;
    --color-light-2: #F3F4F6;
    --color-light-3: #9CA3AF;
    --font-primary: 'Roboto', sans-serif;
    --transition-default: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--color-light);
    background-color: var(--color-dark);
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

/* === UTILITY CLASSES === */
.text-gradient {
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-light-3);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === BACKGROUND PATTERNS === */
.bg-grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-pattern-overlay {
    background-image: radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.1) 2px, transparent 0);
    background-size: 50px 50px;
}

.testimonial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    background-image: 
        radial-gradient(var(--color-accent-3) 2px, transparent 2px),
        radial-gradient(var(--color-accent-1) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

/* === NAVIGATION === */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--color-light-2);
    transition: var(--transition-default);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    transition: var(--transition-default);
}

.nav-link:hover {
    color: var(--color-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-light);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--color-light-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-default);
}

.mobile-nav-link.active, 
.mobile-nav-link:hover {
    color: var(--color-light);
    padding-left: 0.5rem;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), transparent);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    color: white;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-default);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.animated-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent-3);
    position: relative;
    overflow: hidden;
}

.animated-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hexagon-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hexagon-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 3px solid transparent;
    border-image: linear-gradient(45deg, #8B5CF6, #06B6D4, #8B5CF6) 1;
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-card:nth-child(even) {
    animation-delay: 3s;
}

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

/* === FEATURE CARDS === */
.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-default);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: var(--transition-default);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-light);
}

/* === COURSE CARDS === */
.course-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.course-level {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.course-content {
    padding: 1.5rem;
}

.course-features {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.course-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-light-3);
}

/* === TESTIMONIALS === */
.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #8B5CF6, #06B6D4);
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    padding: 2rem;
}

/* === CONTACT SECTION === */
.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-accent-3);
    font-size: 1rem;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-light);
    font-size: 1rem;
    transition: var(--transition-default);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.radio-container {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-default);
}

.radio-container:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.radio-container input {
    margin-right: 0.5rem;
    width: auto;
}

/* === TEACHERS PAGE === */
.teacher-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
}

.teacher-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.teacher-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.teacher-image-container:hover .teacher-image {
    transform: scale(1.05);
}

.teacher-bio {
    border-left: 3px solid rgba(139, 92, 246, 0.5);
    padding-left: 1.5rem;
}

.qualification-list {
    list-style-type: none;
    padding-left: 0;
}

.qualification-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-light-3);
}

.qualification-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent-3);
    font-weight: bold;
}

.feature-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-accent-3);
}

/* === CONTACT PAGE === */
.contact-info-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--color-light);
    font-size: 1.5rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.transport-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-accent-3);
    font-size: 1rem;
}

/* === FAQ SECTION === */
.faq-item {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.faq-question:focus {
    outline: none;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-light-3);
}

/* === EXPECTATIONS SECTION === */
.expect-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.expect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.expect-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--color-light);
    font-size: 2rem;
}

/* === REGISTRATION FORM === */
.registration-form-container {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.registration-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 24px 24px 0 0;
}

/* === POLICY PAGES === */
.policy-content h2, 
.policy-content h3, 
.policy-content h4 {
    color: var(--color-light);
}

.policy-content a {
    color: var(--color-accent-1);
    text-decoration: underline;
    transition: var(--transition-default);
}

.policy-content a:hover {
    color: var(--color-accent-3);
}

.policy-content ul, 
.policy-content ol {
    margin-bottom: 1.5rem;
}

/* === THANK YOU PAGE === */
.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.thank-you-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--color-light);
    font-size: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.info-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--color-light);
    font-size: 1.5rem;
}

/* === FOOTER === */
.footer-heading {
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.footer-links a {
    color: var(--color-light-3);
    transition: var(--transition-default);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-light);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    color: var(--color-light-3);
}

/* === COOKIE CONSENT === */
#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cookie-settings-modal.active {
    display: block;
    opacity: 1;
}

.cookie-settings-container {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(30, 41, 59, 0.9));
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cookie-tab-container {
    margin-top: 1.5rem;
}

.cookie-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.cookie-tab {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-default);
    color: var(--color-light-3);
}

.cookie-tab.active {
    color: var(--color-light);
}

.cookie-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
}

.cookie-tab-content {
    display: none;
}

.cookie-tab-content.active {
    display: block;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #8B5CF6;
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #8B5CF6;
}

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

.cookie-description {
    color: var(--color-light-3);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.cookie-table th, 
.cookie-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    color: var(--color-light);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
}

.cookie-table td {
    color: var(--color-light-3);
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
    
    .course-features {
        grid-template-columns: 1fr;
    }
    
    .cookie-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .cookie-tab {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cookie-tab.active::after {
        display: none;
    }
    
    .cookie-settings-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Custom animations for page elements */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideInUp 0.8s ease forwards;
}

.slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-right {
    animation: slideInRight 0.8s ease forwards;
}

/* IntlTelInput specific styles */
.iti {
    width: 100%;
}

input[type="checkbox" i] {
  width: 40px;
}