/* General Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4faff;
  color: #333;
  line-height: 1.6;
}

/* Header Section */
.school-header {
  background: #004d80;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
}

.school-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.school-header p {
  font-size: 16px;
  color: #e0f4ff;
}

/* About Section */
.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.about-section .badge {
  background-color: #cceefc;
  color: #007acc;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.about-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #004d80;
}

.about-section p {
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* Activities Section */
.activities-section {
  padding: 60px 20px;
  background-color: #f9fbfd;
}

/* Activity Row - image + text */
.activity-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

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

/* Image Block */
.activity-image {
  flex: 1 1 40%;
}

.activity-image img {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Text Block */
.activity-text {
  flex: 1 1 50%;
}

.activity-text h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #004d80;
}

.activity-text p {
  font-size: 16px;
  color: #444;
}
.highlight {
  background-color: #eafaf6;
  border-left: 5px solid #0c4a6e;
  padding: 18px;
  border-radius: 10px;
  font-weight: 500;
}

/* Mission & Vision Styling */
.mission-vision {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mission,
.vision {
  flex: 1 1 45%;
  background: #f1f9ff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mission h3,
.vision h3 {
  font-size: 22px;
  color: #0c4a6e;
  margin-bottom: 12px;
}

.mission p,
.vision p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
/* Responsive Design */
@media (max-width: 768px) {
  .activity-row,
  .activity-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .activity-image,
  .activity-text {
    flex: 1 1 100%;
  }

  .activity-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }

  .about-section h2,
  .activity-text h2 {
    font-size: 22px;
  }

  .about-section p,
  .activity-text p {
    font-size: 15px;
  }

  .mission-vision {
    flex-direction: column;
  }

  .mission,
  .vision {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 24px;
  }
}
