/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


/* Hero Section */
.hero-section {
  height: 200px;
  background: url("../images/about_bg.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Container for main content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main content sections */
.main-content {
  background: white;
  padding: 60px 0 80px; /* added extra bottom padding for spacing */
}

.section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 24px;
  color: #3a91c9;
  margin-bottom: 30px;
  font-weight: 500;
}

.section-content {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
}

.intro-section {
  margin-bottom: 60px;
}

.intro-section h4 {
  font-family: "Quintessential", cursive;
  color: #3a91c9;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 10px;
}

.intro-section h2 {
  font-size: 34px;
  font-weight: 900;
}

/* Focus Section */
.focus-section {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.focus-title {
  color: #3a91c9;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: "Quintessential", cursive;
}

.row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.focus-box,
.mission-box,
.vision-box {
  flex: 1;
  min-width: 280px;
  padding: 40px;
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
  font-family: "Quintessential", cursive;
}

.box-content {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.focus-subtitle {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

.focus-box p {
  max-width: 300px;
  color: #2d2d2d;
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
}

/* Icons */
.icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #ffbe0b;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon img {
  width: 30px;
  height: 30px;
}

/* Plan Section */
.plan-section {
  padding: 60px 0;
}

.plan-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.plan-content {
  margin-left: 30px;
}

.plan-content h5 {
  font-size: 20px;
  color: #3a91c9;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #3a91c9;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-content p {
  letter-spacing: 0.1em;
}

/* Lists */
ul {
  margin-left: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .plan-content {
    margin-left: 0;
  }
}
