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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
}

/* Debug styles for images */
.debug-images img {
    border: 2px solid red !important;
    background-color: yellow !important;
    min-height: 50px !important;
}

/* Force all images to be visible */
img {
    max-width: 100%;
    height: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

/* Responsive Images */
.responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Image Container Styles - Fixed */
.image-container {
    position: relative;
    overflow: visible;
    border-radius: 12px;
    z-index: 1;
}

.image-container img {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

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

/* Aspect Ratio Containers */
.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Lazy Loading Styles - Fixed */
img[loading="lazy"] {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1 !important;
}

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

/* Header */
.header {
    background-color: #1A1A1A;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498DB, #2C3E50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #3498DB;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

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

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498DB;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498DB;
}

.header-actions {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C3E50 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero image styles moved to top */

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

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

.section-badge {
    display: inline-block;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #CCCCCC;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumbs */
.breadcrumbs {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: #3498DB;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Course Content */
.course-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.course-main-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.course-main-content h2 {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.course-main-content h2:first-child {
    margin-top: 0;
}

.course-main-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Course Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

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

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

.course-category {
    display: inline-block;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.course-description {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.course-link {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.course-link:hover {
    color: #3498DB;
}

.course-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.course-link:hover::after {
    transform: translateX(3px);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.two-column-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.two-column-image:hover {
    transform: scale(1.02);
}

.two-column-content {
    padding: 1rem 0;
}

.two-column-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.two-column-content p {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Three Column Layout */
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #2C3E50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #FFFFFF;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-description {
    color: #CCCCCC;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2C3E50 0%, #1A1A1A 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-description {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #3498DB;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3498DB;
}

.footer-description {
    color: #CCCCCC;
    line-height: 1.5;
}

.contact-info p {
    color: #CCCCCC;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3498DB;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #CCCCCC;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

/* Contact Form Styles */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498DB;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #3498DB;
}

/* Contact Info Styles */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #CCCCCC;
    margin: 0;
}

.contact-item a {
    color: #3498DB;
    text-decoration: none;
}

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

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #333333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666666;
    line-height: 1.6;
}

/* Thank You Page Styles */
.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-card {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thank-you-card h2 {
    color: #333333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background-color: #3498DB;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666666;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2C3E50;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #3498DB;
}

.btn-secondary {
    background-color: transparent;
    color: #2C3E50;
    border: 2px solid #2C3E50;
}

.btn-secondary:hover {
    background-color: #2C3E50;
    color: #FFFFFF;
}

/* About Page Styles */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-number {
    background-color: #3498DB;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.approach-item h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #CCCCCC;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: #333333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666666;
    line-height: 1.6;
}

/* Privacy Policy Styles */
.last-updated {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: #333333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498DB;
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: #666666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background-color: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #3498DB;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Terms of Service Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.terms-section h2 {
    color: #333333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498DB;
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.terms-section p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: #666666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-section strong {
    color: #333333;
    font-weight: 600;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #CCCCCC;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.decline-btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.decline-btn:hover {
    background-color: #FFFFFF;
    color: #2C3E50;
}

.accept-btn {
    background-color: #3498DB;
    color: #FFFFFF;
    border: 2px solid #3498DB;
}

.accept-btn:hover {
    background-color: #FFFFFF;
    color: #3498DB;
}

.settings-btn {
    background-color: transparent;
    color: #CCCCCC;
    border: 2px solid #CCCCCC;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.settings-btn:hover {
    background-color: #CCCCCC;
    color: #2C3E50;
}

/* Cookie Settings Page Styles */
.cookie-settings-content {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-settings-card {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-settings-card h2 {
    color: #333333;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.cookie-settings-card > p {
    color: #666666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cookie-settings-form {
    margin-bottom: 2rem;
}

.cookie-category {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #E0E0E0;
}

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

.cookie-category-header h3 {
    color: #333333;
    font-size: 1.3rem;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

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

.cookie-toggle input:checked + .toggle-slider {
    background-color: #3498DB;
}

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

.cookie-toggle input:disabled + .toggle-slider {
    background-color: #2C3E50;
    cursor: not-allowed;
}

.cookie-category p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-details {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #3498DB;
    font-size: 0.9rem;
    color: #555555;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cookie-info {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.cookie-info h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.cookie-info p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-info a {
    color: #3498DB;
    text-decoration: none;
}

.cookie-info a:hover {
    text-decoration: underline;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #1A1A1A;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 2rem;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }
    
    .header-actions {
        display: block;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .three-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Cookie Settings Mobile */
    .cookie-settings-card {
        padding: 2rem 1rem;
    }
    
    .cookie-category {
        padding: 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        width: 100%;
    }
    
    /* Mobile Image Adjustments */
    .hero-image {
        margin: 1rem auto;
        max-width: 100%;
    }
    
    .two-column-image {
        margin-bottom: 4rem;
        max-height: 300px;
        object-fit: cover;
    }
    
    .course-image {
        height: 180px;
    }
    
    .feature-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    /* Small screen image adjustments */
    .hero-image {
        margin: 1rem auto;
        max-width: 100%;
    }
    
    .two-column-image {
        max-height: 250px;
    }
    
    .course-image {
        height: 160px;
    }
    
    .feature-image {
        height: 110px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .course-content {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    /* Extra small screen image adjustments */
    .hero-image {
        margin: 0.5rem auto;
        border-radius: 8px;
    }
    
    .two-column-image {
        max-height: 200px;
        border-radius: 8px;
    }
    
    .course-image {
        height: 150px;
        border-radius: 8px 8px 0 0;
    }
    
    .feature-image {
        height: 100px;
        border-radius: 6px;
    }
    
    .course-card {
        border-radius: 8px;
    }
    
    .two-column-content {
        padding: 1rem;
    }
}
