/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #4B5563;
  background-color: #ffffff;
}

/* Intro Section */
.intro-section {
  width: 100%;
  padding: 120px 24px;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/skill.jpg') center center / cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.intro-paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #f3f3f3;
  max-width: 900px;
  margin: 0 auto 20px;
}


/* Award Section */
.award-section {
  text-align: center;
  padding: 48px 0;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.award-img {
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission {
  padding: 60px 0;
  background: #FAF8F5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6C5F47;
  text-align: center;
  margin-bottom: 32px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.mission-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mission-card h3 {
  font-size: 1.4rem;
  color: #6C5F47;
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

/* Mission Highlights */
.mission-points {
  padding: 60px 0;
  background: linear-gradient(135deg, #f6f1ea 0%, #ffffff 100%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mission-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6C5F47;
  text-align: center;
  margin-bottom: 24px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 32px;
}

.bullet-list li {
  font-size: 1.1rem;
  color: #4B5563;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
  line-height: 1.6;
}

.bullet-list li:before {
  content: "✓";
  color: #D3B88C;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.mission-item {
  background: #ffffff;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
}

.mission-item h4 {
  font-size: 1.3rem;
  color: #6C5F47;
  margin-bottom: 12px;
}

.mission-item p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

/* Programs Section */
.programs {
  padding: 60px 0;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.programs h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6C5F47;
  text-align: center;
  margin-bottom: 32px;
}

.program-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f2ee;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 24px;
  transition: transform 0.3s ease;
}

.program-row:hover {
  transform: translateY(-5px);
}

.program-row.reverse {
  flex-direction: row-reverse;
}

.program-img {
  flex: 1 1 40%;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-text {
  flex: 1 1 50%;
}

.program-text h3 {
  font-size: 1.6rem;
  color: #6C5F47;
  margin-bottom: 12px;
}

.program-text p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

/* Image Placeholder fallback */
.placeholder-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .program-row,
  .program-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .program-img {
    max-width: 100%;
  }

  .program-text h3 {
    font-size: 1.3rem;
  }

  .program-text p {
    font-size: 0.95rem;
  }
}

