body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f8fb;
}

/* Hero Section */
.hero-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    /* Light background */
}

.hero-card {
    width: 85%;
    /* Make the card span the full width */
    border: 1px solid #dee2e6;
    /* Subtle border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    overflow: hidden;
    background-color: #ffffff;
    /* Card background */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow on hover */
}

.hero-card img {
    width: 100%;
    /* Make the image span the full width */
    height: auto;
    border-bottom: 1px solid #dee2e6;
    /* Divider */
}

.hero-card-content {
    padding: 15px;
    text-align: center;
}

.hero-card-content h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #343a40;
    /* Darker text */
}

.hero-card-content p {
    font-size: 1rem;
    color: #6c757d;
    /* Subtle gray text */
    margin-bottom: 15px;
}

.btn.btn-hero {
    background-color: #007bff;
    /* Primary blue */
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.btn-hero:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

/* Highlights Section */
.highlights-section {
    margin: 50px 0;
    text-align: center;
    padding: 40px 20px;
}

.highlight-card {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: white;
    margin: 20px;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2575fc;
}

/* Curriculum Section */
.curriculum-section {
    margin: 50px 0;
    padding: 40px 20px;
    background: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.curriculum-section h2 {
    text-align: center;
    font-weight: 700;
}

.accordion .card {
    margin-bottom: 15px;
}

.accordion .card-header {
    background-color: #f8f9fa;
}

/* Enrollment Section */
.enrollment-section {
    background: linear-gradient(to right, #9EEFE1, #462AF0);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.pricing-tier {
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 15px;
    padding: 20px;
}

.pricing-tier h4 {
    color: #2575fc;
    font-weight: 700;
}

.btn-enroll {
    margin-top: 20px;
    background-color: #2575fc;
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
}

.btn-enroll:hover {
    background-color: #0056b3;
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 50px 0;
}

.review-card {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
}

.review-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 1rem;
    color: #555;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-weight: 700;
}