/*=======================
 * Teacher.css
 * 1. Reset and Base Styles
 * 2. Teacher Hero Section
 * 3. Teacher Training Section
 * 4. Teacher Comments Section
 * 5. User Profile Styles
 * 6. Responsive Design
 =======================*/


/*======================
 * 1. Reset and Base Styles
 =======================*/
body, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/*======================
 * 2. Teacher Hero Section
 =======================*/
.Teacher__area {
    background-color: #f8f6f3;
    height: 360px;
    padding: 50px 0;
}

.Teacher__area h2 {
    font-size: 80px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 100px;
    color: #f5f5f5;
}

.Teacher__area p {
    font-size: 20px;
    text-align: center;
    color: #f5f5f5;
}

/*======================
 * 3. Teacher Training Section
 =======================*/
.training-section {
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #f5f799;
}

.training-header {
    text-align: center;
    margin-bottom: 50px;
}

.training-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.training-header h2 {
    font-size: 25px;
    color: #555;
    line-height: 1.0;
    margin-bottom: 20px;
}

.training-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px;
}

.training-box {
    background-color: rgb(248, 248, 247);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.training-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.training-icon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.training-box h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.training-box p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/*======================
 * 4. Teacher Comments Section
 =======================*/
.Teacher-comments .comments-container {
    width: 80%;
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.Teacher-comments .title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.Teacher-comments .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.Teacher-comments .review {
    display: flex;
    overflow-x: auto;
    margin-bottom: 20px;
    padding: 10px 0;
}

.Teacher-comments .review-item {
    min-width: 250px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.Teacher-comments .review-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}