* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff1f1;
    position: relative;
    overflow-x: hidden;
    
} 
  
/*---------------------------------------------section-10------------------------------------*/

.diplomacourse {
    background-color: #f9f7f3;
    padding: 20px;
}

.section-10 {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 75px;
}

.section-10 .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-10 .title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
}

.section-10 .rating {
    display: flex;
    align-items: center;
    color: #f7b731;
    font-size: 24px;
    font-weight: bold;
}

.section-10 .star {
    margin-right: 6px;
}

.section-10 .description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    text-align: left;
}

.section-10 .stats-container {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    margin-bottom: 30px;
}

.section-10 .stat-item {
    display: flex;
    flex-direction: column;
}

.section-10 .stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #f57c00;
    margin-bottom: 5px;
}

.section-10 .stat-label {
    font-size: 16px;
    color: #444;
}

.section-10 .features-container {
    margin-bottom: 20px;
}

.section-10 .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.section-10 .feature-icon {
    width: 24px;
    height: 24px;
    background-color: #f57c00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.section-10 .checkmark {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.section-10 .feature-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-align: center;
}

.section-10 .content-wrapper {
    display: flex;
    gap: 30px;
}

.section-10 .left-content {
    flex: 1;
}

.section-10 .right-content {
    flex: 0 0 320px;
}

.section-10 .course-image {
    width: 100%;
    height: 70%;
    border-radius: 8px;
    object-fit: cover;
}
/*----------------------------------------------------coursecontent-------------------------------*/

.coursecontent {
    background-color: #ff0000;
    padding: 20px;
}

.section-11 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.section-11 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 30px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.accordion-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header .arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-header .arrow::before {
    content: "›";
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transform: rotate(90deg);
    display: inline-block;
}

.accordion-header.collapsed .arrow::before {
    transform: rotate(0deg);
}

.accordion-header .number {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.accordion-header .title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-content.active {
    max-height: 200px;
    padding: 0 20px 20px;
}

.accordion-content ul {
    list-style-type: none;
}

.accordion-content li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.accordion-content li:last-child {
    border-bottom: none;
}




/*----------------------------------------------------media query---------------------------------------------------*/

/*--------------------------------------------------section-10 query------------------------------------------------*/

@media (max-width: 768px) {
    .section-10 .content-wrapper {
        flex-direction: column;
    }
    
    .section-10 .description {
        max-width: 100%;
    }
    
    .section-10 .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-10 .right-content {
        order: -1;
        margin-bottom: 20px;
    }
}
/* Large screens (above 992px) */
@media screen and (min-width: 992px) {
    .section-10 .feature-text {
        font-size: 18px;
    }
}

/* Medium screens (768px to 991px) */
@media screen and (max-width: 991px) {
    .section-10 .feature-text {
        font-size: 16px;
    }
}

/* Small screens (below 768px) */
@media screen and (max-width: 767px) {
    .section-10 .feature-item {
        flex-direction: column;
    }
    
    .section-10 .feature-icon {
        margin-bottom: 10px;
    }
    
    .section-10 .feature-text {
        font-size: 15px;
    }
}

/* Extra small screens (below 576px) */
@media screen and (max-width: 575px) {
    .section-10 .feature-text {
        font-size: 14px;
    }
}
 
/* Large screens (1200px and above) */
@media screen and (min-width: 1200px) {
    .section-10 {
        padding: 40px;
    }
    
    .section-10 .title {
        font-size: 36px;
    }
    
    .section-10 .description {
        font-size: 20px;
    }
    
    .section-10 .stats-container {
        gap: 100px;
    }
}

/* Medium screens (768px to 1199px) */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .section-10 {
        max-width: 90%;
        padding: 25px;
        margin-top: 50px;
    }
    
    .section-10 .title {
        font-size: 28px;
    }
    
    .section-10 .rating {
        font-size: 20px;
    }
    
    .section-10 .description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .section-10 .stats-container {
        gap: 40px;
    }
    
    .section-10 .stat-number {
        font-size: 24px;
    }
    
    .section-10 .right-content {
        flex: 0 0 280px;
    }
}

/* Small screens (767px and below) */
@media screen and (max-width: 767px) {
    .diplomacourse {
        padding: 10px;
    }
    
    .section-10 {
        max-width: 100%;
        padding: 20px;
        margin-top: 30px;
        border-radius: 8px;
    }
    
    .section-10 .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-10 .rating {
        margin-top: 10px;
        font-size: 18px;
    }
    
    .section-10 .title {
        font-size: 24px;
    }
    
    .section-10 .description {
        font-size: 15px;
        max-width: 100%;
    }
    
    .section-10 .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .section-10 .stat-number {
        font-size: 22px;
    }
    
    .section-10 .stat-label {
        font-size: 14px;
    }
    
    .section-10 .content-wrapper {
        flex-direction: column;
    }
    
    .section-10 .right-content {
        order: -1;
        margin-bottom: 20px;
    }
    
    .section-10 .feature-text {
        font-size: 14px;
    }
}

/* Extra small screens (480px and below) */
@media screen and (max-width: 480px) {
    .section-10 {
        padding: 15px;
    }
    
    .section-10 .title {
        font-size: 22px;
    }
    
    .section-10 .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-10 .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .section-10 .checkmark {
        font-size: 12px;
    }
}

/*----------------------------------------------------coursecontent query-------------------------------*/

@media screen and (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}

/* Large screens (1200px and above) */
@media screen and (min-width: 1200px) {
    .section-11 {
        padding: 40px;
    }
    
    .section-11 h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .course-grid {
        gap: 30px;
    }
    
    .accordion-header {
        padding: 20px 24px;
    }
    
    .accordion-header .title {
        font-size: 18px;
    }
    
    .accordion-content.active {
        max-height: 250px;
    }
    
    .accordion-content li {
        font-size: 16px;
        padding: 12px 0;
    }
}

/* Medium screens (768px to 1199px) */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .section-11 {
        padding: 25px;
        max-width: 90%;
    }
    
    .section-11 h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .accordion-header .arrow {
        width: 18px;
        height: 18px;
    }
    
    .accordion-header .arrow::before {
        font-size: 18px;
    }
}

/* Small screens (767px and below) */
@media screen and (max-width: 767px) {
    .coursecontent {
        padding: 15px;
    }
    
    .section-11 {
        padding: 20px;
    }
    
    .section-11 h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .accordion-item {
        margin-bottom: 12px;
    }
    
    .accordion-header {
        padding: 15px;
        gap: 8px;
    }
    
    .accordion-header .title {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .accordion-content.active {
        padding: 0 15px 15px;
    }
}

/* Extra small screens (480px and below) */
@media screen and (max-width: 480px) {
    .coursecontent {
        padding: 10px;
    }
    
    .section-11 {
        padding: 15px 10px;
    }
    
    .section-11 h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .accordion-header {
        padding: 12px;
    }
    
    .accordion-header .arrow {
        width: 16px;
        height: 16px;
    }
    
    .accordion-header .arrow::before {
        font-size: 16px;
    }
    
    .accordion-header .number {
        font-size: 14px;
    }
    
    .accordion-header .title {
        font-size: 14px;
    }
    
    .accordion-content li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .accordion-content.active {
        max-height: 180px;
        padding: 0 12px 12px;
    }
}

