/* Courses Page Specific Styles */
.courses-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('path/to/courses-header-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.courses-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-categories {
    padding: 5rem 0;
}

.course-categories h2 {
    margin: 3rem 0 2rem;
    color: #333;
    font-size: 2rem;
}

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

.course-card.detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card.detailed:hover {
    transform: translateY(-5px);
}

.course-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c22d2d;
}

.duration {
    color: #666;
}

.duration i {
    margin-right: 5px;
}

.course-content {
    padding: 1.5rem;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
}

.curriculum, .benefits {
    margin-bottom: 1.5rem;
}

.curriculum h4, .benefits h4 {
    color: #333;
    margin-bottom: 1rem;
}

.curriculum ul, .benefits ul {
    list-style: none;
    padding: 0;
}

.curriculum li, .benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.curriculum li i, .benefits li i {
    color: #c22d2d;
    margin-right: 10px;
}

.enroll-button {
    display: inline-block;
    background: #c22d2d;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.enroll-button:hover {
    background: #a42525;
}

/* Crash Courses Section */
.crash-courses {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.crash-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.crash-course-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.crash-course-card:hover {
    transform: translateY(-5px);
}

.crash-course-card i {
    font-size: 2.5rem;
    color: #c22d2d;
    margin-bottom: 1rem;
}

.crash-course-card h4 {
    margin-bottom: 1rem;
}

.contact-price {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-price:hover {
    color: #c22d2d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .courses-header {
        padding: 100px 0 40px;
    }

    .courses-header h1 {
        font-size: 2rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .crash-course-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
} 