.icmt-hero-section {
    position: relative;
    overflow: hidden;
}

.icmt-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.icmt-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15%;
}

.icmt-hero-title {
    font-size: 90px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    margin-bottom: 20px;
}

.icmt-hero-text {
    text-align: left;
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
    max-width: 80%;
}

.icmt-hero-button {
    background-color: darkred;
    font-size: larger;
    margin-bottom: 100px;
    text-align: left;
    align-self: flex-start;
    padding: 10px 30px;
}

.icmt-welcome-section {
    padding: 60px 0;
    text-align: center;
}

.icmt-welcome-title {
    font-size: 70px;
    margin-bottom: 20px;
}

.icmt-welcome-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.icmt-welcome-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.icmt-welcome-button {
    background-color: darkred;
    font-size: larger;
    padding: 10px 30px;
}

.icmt-mission-vision-section {
    padding: 60px 0;
}

.icmt-mission-vision-item {
    text-align: center;
    margin-bottom: 40px;
}

.icmt-mission-vision-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.icmt-mission-vision-title {
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.icmt-mission-vision-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

.icmt-banner-section {
    padding: 60px 0;
}

.icmt-banner-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
}

.icmt-courses-section {
    padding: 60px 0;
}

.icmt-courses-title {
    font-size: 90px;
    text-align: center;
    margin-bottom: 20px;
}

.icmt-courses-intro {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.icmt-course-category {
    margin-bottom: 40px;
}

.icmt-course-category-title {
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 20px;
}

.icmt-course-category-underline {
    height: 2px;
    background-color: #333;
    width: 200px;
    margin-bottom: 15px;
    margin-left: 20px;
}

.icmt-course-category-description {
    margin-bottom: 20px;
    margin-left: 20px;
    line-height: 1.6;
}

.icmt-course-list {
    margin-left: 40px;
}

.icmt-course-list li {
    margin-bottom: 8px;
}

.icmt-values-section {
    padding: 60px 0;
}

.icmt-values-title {
    font-size: 100px;
    text-align: center;
    margin-bottom: 40px;
}

.icmt-value-item {
    text-align: center;
    margin-bottom: 40px;
}

.icmt-value-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.icmt-value-text {
    margin-top: 15px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .icmt-hero-title {
        font-size: 70px;
    }
    
    .icmt-welcome-title {
        font-size: 60px;
    }
    
    .icmt-courses-title {
        font-size: 70px;
    }
    
    .icmt-values-title {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .icmt-hero-title {
        font-size: 50px;
    }
    
    .icmt-hero-content {
        padding: 0 10%;
    }
    
    .icmt-welcome-title {
        font-size: 50px;
    }
    
    .icmt-courses-title {
        font-size: 60px;
    }
    
    .icmt-values-title {
        font-size: 60px;
    }
    
    .icmt-mission-vision-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .icmt-hero-image {
        height: 500px;
    }
    
    .icmt-hero-title {
        font-size: 40px;
    }
    
    .icmt-hero-text {
        max-width: 100%;
    }
    
    .icmt-welcome-title {
        font-size: 40px;
    }
    
    .icmt-courses-title {
        font-size: 50px;
    }
    
    .icmt-values-title {
        font-size: 50px;
    }
    
    .icmt-banner-image {
        height: 400px;
    }
    
    .icmt-course-category-underline {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .icmt-hero-image {
        height: 400px;
    }
    
    .icmt-hero-title {
        font-size: 30px;
    }
    
    .icmt-hero-content {
        padding: 0 5%;
    }
    
    .icmt-welcome-title {
        font-size: 30px;
    }
    
    .icmt-courses-title {
        font-size: 40px;
    }
    
    .icmt-values-title {
        font-size: 40px;
    }
    
    .icmt-banner-image {
        height: 300px;
    }
    
    .icmt-course-category-underline {
        width: 100px;
    }
    
    .icmt-course-list {
        margin-left: 20px;
    }
}