
<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

main{
    max-width:1200px;
    margin:0px auto;
}
.main-containt{
    display:flex;
    gap:20px;
    justify-content: center;
    margin:10px auto;
}
   /* Course Details Section */
.detail-containt {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /*margin: 30px 0;*/
  /*max-width:1200px;*/
}
.containt-box-header {
  border-left: 5px solid #1565c0;
  padding-left: 15px;
  margin-bottom: 25px;
}
.notice-containt{
    height:100%;
    min-width:300px;
}

.containt-box-header h1 {
  font-size: 30px;
  color: #1565c0;
  margin-bottom: 10px;
}
.content {
  max-width:100%;
  margin:10px 0;
  
}
.content h2 {
  font-size: 24px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.content h3 {
  font-size: 20px;
  color: #00796b;
  margin-top: 25px;
  margin-bottom: 10px;
}

.content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.content strong {
  color: #000;
}

.content ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 10px;
}

.content ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
.main-containt{
    flex-wrap: wrap;
}
  .detail-containt {
    padding: 20px;
  }

  .containt-box-header h1 {
    font-size: 26px;
  }

  .content h2 {
    font-size: 22px;
  }

  .content h3 {
    font-size: 18px;
  }
}
.director-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  /*background: linear-gradient(135deg, #e0f7fa, #f1f8e9);*/
}

.director-photo {
  width: 150px;
  height: auto;
  /*border-radius: 12px;*/
  /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}

.message-content {
  flex: 1;
}

.message-content h2 {
  font-size: 28px;
  color: #515151;
  margin-bottom: 15px;
}

.message-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.message-content strong {
  color: #515151;
}

#about {
  background-color: #ff6600;
  padding: 40px 20px;
}
#about h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 15px;
}

#about p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

/* News & Notification */
.news-section {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height:100%;
}

.news-section h2 {
  font-size: 26px;
  color: #585858;
  margin-bottom: 15px;
}

.news-marquee {
  border: 1px solid #edede9;
  background-color: #fff;
  padding: 10px;
  border-radius: 3px;
}

.news-marquee ul {
  list-style: none;
}

.news-marquee li {
  margin-bottom: 10px;
}

.news-marquee a {
  text-decoration: none;
  color: #e65100;
  font-weight: 500;
  transition: color 0.3s ease;
}

.news-marquee a:hover {
  color: #bf360c;
}

/* Responsive */
@media (max-width: 768px) {
  .director-box {
    flex-direction: column;
    text-align: center;
  }

  .director-photo {
    width: 100%;
    max-width: 250px;
  }
}


</style>