body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}

h1, h2, h3 {
  font-weight: 700;
}

.hero {
  background: linear-gradient(to right, #890c25, #b01532);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-section p,
.mission p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-img {
  width: 100%;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.courses .course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.course-box {
  flex: 1 1 120px;
  background: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #890c25;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.values .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.value-box {
  flex: 1 1 30%;
  background: #f9f9f9;
  padding: 25px;
  border-left: 5px solid #890c25;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.value-box img {
  height: 50px;
  margin-bottom: 15px;
}

.cta {
  background: #890c25;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta .btn {
  background: #fff;
  color: #890c25;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: #eee;
}
