
        /* Courses Section */
        .courses {
            padding: 5rem 0;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background-color: #e6f2ff;
            backdrop-filter: blur(10px);
            border: 1px solid #e0e0e0; /* Light grey border */
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
			
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
			color: #333; /* Darker text default */
			
			
        }

        .course-card:hover {
            background-color: #e6ffe6;
            transform: translateY(-5px);
        }

        .course-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .course-card:hover .course-image img {
            transform: scale(1.05);
        }

        .course-level {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
        }

        .level-beginner { background: linear-gradient(45deg, #ec4899, #8b5cf6); }
        .level-intermediate { background: linear-gradient(45deg, #3b82f6, #06b6d4); }
        .level-advanced { background: linear-gradient(45deg, #8b5cf6, #ec4899); }

        .course-content {
            padding: 1.5rem;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 1rem;
        }

        .course-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .course-description {
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 1.5rem;
        }

        .skills {
            margin-bottom: 1.5rem;
        }

        .skills-label {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: rgba(0, 0, 0, 0.2);
            color: rgba(0, 0, 0, 0.7);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
        }
