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

        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: #faf8f5;
            color: #2c2c2c;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: row !important;
            padding: 15px 60px;
            background: #faf8f5;
            border-bottom: 1px solid #ffeacc;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            min-height: 70px;
            margin: 0 !important;
        }
        
        .header.scrolled {
            background: rgba(250, 248, 245, 0.98);
            border-bottom: 1px solid #f4a442;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 10001;
            position: relative;
            order: 1;
            margin-right: auto;
        }

        .logo-img {
            height: 80px;
            width: 200px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 10001;
            padding: 10px;
            background: none;
            border: none;
            position: relative;
            order: 3;
            margin-left: auto;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #d97a2f;
            transition: all 0.3s ease;
            display: block;
            border-radius: 2px;
        }

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

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

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

        .hero-banner {
            background: linear-gradient(135deg, #d97a2f 0%, #f4a442 50%, #c85a1a 100%);
            padding: clamp(60px, 12vw, 100px) clamp(30px, 5vw, 60px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px);
            animation: float 30s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            100% {
                transform: translate(60px, 60px) rotate(360deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-size: clamp(36px, 10vw, 72px);
            color: white;
            font-weight: 400;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .page-subtitle {
            font-size: clamp(16px, 3vw, 24px);
            color: #fff5e6;
            font-style: italic;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(10px, 2vw, 15px);
            margin: clamp(20px, 4vw, 30px) 0;
        }

        .divider-line {
            width: clamp(60px, 15vw, 120px);
            height: 1px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .divider-diamond {
            color: white;
            font-size: clamp(10px, 2vw, 12px);
        }

        .hero-description {
            font-size: clamp(14px, 2.5vw, 18px);
            color: #fff5e6;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            padding: 0 clamp(10px, 2vw, 0px);
        }

        .courses-section {
            padding: clamp(50px, 10vw, 80px) clamp(30px, 5vw, 60px);
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(40px, 8vw, 60px);
        }

        .section-title {
            font-size: clamp(32px, 7vw, 48px);
            color: #c85a1a;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: clamp(16px, 3vw, 20px);
            color: #8b3a0e;
            font-style: italic;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
            gap: clamp(30px, 5vw, 40px);
            margin-bottom: clamp(40px, 8vw, 60px);
        }

        .course-card {
            background: white;
            border-radius: clamp(15px, 3vw, 20px);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(200, 90, 26, 0.15);
        }

        .course-header {
            height: clamp(180px, 30vw, 250px);
            position: relative;
            overflow: hidden;
        }

        .course-card:nth-child(1) .course-header {
            background: linear-gradient(135deg, #f4a442 0%, #d97a2f 100%);
        }

        .course-card:nth-child(2) .course-header {
            background: linear-gradient(135deg, #d97a2f 0%, #c85a1a 100%);
        }

        .course-card:nth-child(3) .course-header {
            background: linear-gradient(135deg, #c85a1a 0%, #8b3a0e 100%);
        }

        .course-card:nth-child(4) .course-header {
            background: linear-gradient(135deg, #f4a442 0%, #c85a1a 100%);
        }

        .course-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: clamp(80px, 15vw, 120px);
            height: clamp(80px, 15vw, 120px);
            font-size: clamp(40px, 8vw, 60px);
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .course-level {
            position: absolute;
            top: clamp(15px, 3vw, 20px);
            right: clamp(15px, 3vw, 20px);
            background: rgba(255, 255, 255, 0.95);
            color: #2c2c2c;
            padding: clamp(6px, 1.5vw, 8px) clamp(15px, 3vw, 20px);
            border-radius: 25px;
            font-size: clamp(12px, 2vw, 14px);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .course-body {
            padding: clamp(25px, 4vw, 35px);
        }

        .course-title {
            font-size: clamp(24px, 4vw, 32px);
            color: #2c2c2c;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .course-description {
            color: #666;
            line-height: 1.8;
            font-size: clamp(14px, 2vw, 16px);
            margin-bottom: clamp(20px, 3vw, 25px);
        }

        .course-features {
            margin-bottom: clamp(20px, 3vw, 25px);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: clamp(10px, 2vw, 12px);
            margin-bottom: clamp(10px, 2vw, 12px);
            font-size: clamp(13px, 2vw, 15px);
            color: #555;
        }

        .feature-icon {
            width: clamp(20px, 3vw, 24px);
            height: clamp(20px, 3vw, 24px);
            background: linear-gradient(135deg, #f4a442, #d97a2f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: clamp(10px, 1.5vw, 12px);
            flex-shrink: 0;
        }

        .course-footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: clamp(15px, 3vw, 20px);
            border-top: 1px solid #ffeacc;
            gap: 15px;
        }

        .course-duration {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #c85a1a;
            font-size: clamp(13px, 2vw, 15px);
        }

        .enroll-btn {
            background: linear-gradient(135deg, #d97a2f, #c85a1a);
            color: white;
            border: none;
            padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
            border-radius: 8px;
            font-size: clamp(14px, 2vw, 16px);
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .enroll-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(217, 122, 47, 0.3);
        }

        .why-learn-section {
            background: linear-gradient(135deg, #fff5e6 0%, #ffeacc 100%);
            padding: clamp(50px, 10vw, 80px) clamp(30px, 5vw, 60px);
            margin-top: clamp(40px, 8vw, 60px);
        }

        .why-learn-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            gap: clamp(30px, 5vw, 40px);
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background: white;
            padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
            border-radius: clamp(12px, 2vw, 15px);
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .benefit-icon-large {
            width: clamp(60px, 10vw, 80px);
            height: clamp(60px, 10vw, 80px);
            background: linear-gradient(135deg, #d97a2f, #f4a442);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(28px, 5vw, 36px);
            margin: 0 auto clamp(20px, 3vw, 25px);
            color: white;
        }

        .benefit-title {
            font-size: clamp(20px, 3vw, 24px);
            color: #2c2c2c;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .benefit-description {
            color: #666;
            line-height: 1.7;
            font-size: clamp(13px, 2vw, 15px);
        }

        .cta-section {
            background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
            padding: clamp(50px, 10vw, 80px) clamp(30px, 5vw, 60px);
            text-align: center;
            color: white;
        }

        .cta-title {
            font-size: clamp(32px, 7vw, 48px);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .cta-description {
            font-size: clamp(16px, 3vw, 20px);
            margin-bottom: clamp(30px, 5vw, 40px);
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: clamp(15px, 3vw, 20px);
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: clamp(14px, 2.5vw, 18px) clamp(30px, 5vw, 40px);
            font-size: clamp(15px, 2.5vw, 18px);
            font-family: inherit;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, #d97a2f, #f4a442);
            color: white;
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(217, 122, 47, 0.4);
        }

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

        .cta-btn-secondary:hover {
            background: white;
            color: #2c2c2c;
        }

        
       .footer {
            padding: clamp(20px, 4vw, 40px) clamp(15px, 4vw, 60px);
            background-color: #2c2c2c;
            color: #fff;
        }
        .copyright {
            font-size: clamp(12px, 2vw, 14px);
            color: #999;
        }

/* Enrollment Modal Styles */
.enrollment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.enrollment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: clamp(30px, 5vw, 50px);
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
    transition: all 0.3s;
    z-index: 1;
}

.modal-close:hover {
    color: #d97a2f;
    transform: rotate(90deg);
}

.modal-title {
    font-size: clamp(24px, 5vw, 32px);
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 30px;
}

.modal-divider .divider-line {
    width: 80px;
    height: 1px;
    background-color: #f4a442;
}

.modal-divider .divider-diamond {
    color: #d97a2f;
    font-size: 12px;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.required {
    color: #d97a2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ffeacc;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d97a2f;
    box-shadow: 0 0 0 3px rgba(217, 122, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.submit-btn,
.cancel-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, #d97a2f, #c85a1a);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 122, 47, 0.3);
}

.cancel-btn {
    background: #fff5e6;
    color: #666;
    border: 2px solid #ffeacc;
}

.cancel-btn:hover {
    background: #ffeacc;
    color: #2c2c2c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enrollment-modal {
        padding: 10px;
    }

    .modal-content {
        padding: 25px 20px;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .cancel-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px 15px;
    }

    .modal-title {
        font-size: 22px;
        padding-right: 40px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .submit-btn,
    .cancel-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #fff5e6;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #d97a2f;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #c85a1a;
}

/* SYLLABUS BUTTON STYLING - Add to learn.css */
.syllabus-btn {
    background: linear-gradient(135deg, #fff5e6, #ffeacc);
    color: #c85a1a;
    border: 2px solid #f4a442;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 16px);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.syllabus-btn:hover {
    background: linear-gradient(135deg, #ffeacc, #f4a442);
    color: white;
    border-color: #d97a2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 164, 66, 0.3);
}

.course-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* IMPROVED SYLLABUS MODAL STYLES */
.syllabus-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.syllabus-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.syllabus-modal .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: clamp(35px, 5vw, 50px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100000;
}

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

.syllabus-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(200, 90, 26, 0.1);
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #c85a1a;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100001;
    font-weight: 300;
    line-height: 1;
}

.syllabus-modal .modal-close:hover {
    background: #c85a1a;
    color: white;
    transform: rotate(90deg);
}

.syllabus-modal .modal-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 10px;
    text-align: center;
    padding-right: 50px;
    line-height: 1.3;
}

.syllabus-modal .modal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 35px;
}

.syllabus-modal .divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, #f4a442, transparent);
}

.syllabus-modal .divider-diamond {
    color: #d97a2f;
    font-size: 14px;
}

.syllabus-details {
    padding: 0;
}

.course-info {
    background: linear-gradient(135deg, #fff5e6 0%, #ffeacc 100%);
    padding: clamp(20px, 4vw, 30px);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #f4a442;
}

.course-info p {
    margin: 10px 0;
    font-size: clamp(15px, 2.5vw, 17px);
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-info strong {
    color: #c85a1a;
    font-weight: 600;
    min-width: 80px;
}

.course-info span {
    color: #2c2c2c;
    font-weight: 500;
}

.syllabus-details h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    color: #c85a1a;
    margin-bottom: 20px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.syllabus-details h3:before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f4a442, #d97a2f);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
}

.features-list li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    color: #2c2c2c;
    font-size: clamp(14px, 2vw, 16px);
    border-bottom: 1px solid rgba(244, 164, 66, 0.2);
    line-height: 1.6;
    transition: all 0.3s;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    background: rgba(244, 164, 66, 0.1);
    padding-left: 55px;
}

.features-list li:before {
    content: "★";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #f4a442;
    font-size: 20px;
    font-weight: bold;
}

.syllabus-actions {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid #ffeacc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-syllabus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #d97a2f 0%, #c85a1a 100%);
    color: white;
    padding: clamp(14px, 2.5vw, 18px) clamp(30px, 5vw, 45px);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(15px, 2.5vw, 17px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(217, 122, 47, 0.4);
    border: 2px solid transparent;
}

.download-syllabus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(217, 122, 47, 0.5);
    background: linear-gradient(135deg, #c85a1a 0%, #8b3a0e 100%);
    border-color: #f4a442;
}

.download-syllabus-btn span:first-child {
    font-size: clamp(22px, 4vw, 26px);
}

#noSyllabusText {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 25px;
    font-size: clamp(14px, 2vw, 16px);
    background: #faf8f5;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

/* Custom Scrollbar for Syllabus Modal */
.syllabus-modal .modal-content::-webkit-scrollbar {
    width: 10px;
}

.syllabus-modal .modal-content::-webkit-scrollbar-track {
    background: #fff5e6;
    border-radius: 10px;
}

.syllabus-modal .modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f4a442, #d97a2f);
    border-radius: 10px;
}

.syllabus-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d97a2f, #c85a1a);
}

/* Responsive Design */
@media (max-width: 768px) {
    .syllabus-modal .modal-content {
        padding: 30px 20px;
        max-height: 95vh;
        border-radius: 15px;
    }

    .syllabus-modal .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .course-info {
        padding: 20px 15px;
    }

    .course-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .course-info strong {
        min-width: auto;
    }

    .features-list {
        padding: 15px;
    }

    .features-list li {
        padding: 12px 15px;
        padding-left: 45px;
    }

    .features-list li:before {
        left: 15px;
        font-size: 18px;
    }

    .download-syllabus-btn {
        width: 100%;
    }

    .course-actions {
        flex-direction: column;
    }

    .syllabus-btn,
    .enroll-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .syllabus-modal {
        padding: 10px;
    }

    .syllabus-modal .modal-content {
        padding: 25px 15px;
    }

    .syllabus-modal .modal-title {
        padding-right: 40px;
    }

    .course-info {
        padding: 15px;
    }

    .features-list li {
        padding: 10px 12px;
        padding-left: 40px;
        font-size: 14px;
    }
}

/* Ensure modal appears above everything */
.syllabus-modal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}