body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #FFF4F3; */
}


.course-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin-top: 0px auto;
position: relative;
    border-radius: 10px;

    /* position: relative; */
    top: 9;
    width: 100%;
    left: 10%;

}

.course-thumbnail {
    flex: 1;
    min-width: 600px;
    margin-top: 40px;
}

.course-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.course-info {
    flex: 2;
    padding: 20px;
    min-width: 200px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.course-info h1 {
    font-size: 2rem;
    color: p#000;
    margin-bottom: 10px;
}

.course-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.course-details li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.course-details i {
    color: #5a49f8;
    margin-right: 10px;
}

.enroll-btn {
    background: linear-gradient(to right, #5a49f8, #7a64f2);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enroll-btn:hover {
   background-color: #000;
   color: #fff;
}



.program {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    height: auto;
}

.course-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 30vh;
}

.course-heading h1 {
    text-align: center;
    font-size: 4.5vw;
    color: #000;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #5a49f8;
}

.course-title {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-title i {
    font-size: 28px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #5a49f8;
    position: absolute;
    left: 0;
    top: 2px;
} 

.duration {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 2px dashed #eee;
    color: #5a49f8;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .course-thumbnail{
        min-width: 300px;
    }

    .course-container {
        left: 0;
    }

    .enroll-btn:hover {
        background-color: #000;
        color: #fff;
    }
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.faq-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}


.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
    color: #5a49f8;
}

.faq-question i {
    color:  #5a49f8;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color:  #5a49f8;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }
}