/* Shared stylesheet */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
}
header {
  background: linear-gradient(90deg, #e63946, #457b9d);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img { height: 60px; }
nav a { margin: 0 1rem; color: #fff; text-decoration: none; font-weight: 600; }
nav a:hover { text-decoration: underline; }
.hero { text-align: center; padding: 5rem 2rem; background: linear-gradient(135deg,#ff7f50,#6a5acd); color: white; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem auto; }
.hero button { background:#fff; color:#e63946; border:none; padding:1rem 2rem; font-size:1rem; font-weight:600; border-radius:5px; cursor:pointer; transition:0.3s; }
.hero button:hover { background:#f1f1f1; }
section { padding: 4rem 2rem; max-width: 1200px; margin: auto; }
section h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.programs { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2rem; }
.card { background:#fff; border-radius:10px; padding:2rem; box-shadow:0 4px 15px rgba(0,0,0,0.1); transition:transform 0.3s ease; }
.card:hover { transform:translateY(-10px); }
.card h3 { margin-top:0; color:#e63946; }
footer { background:#1d3557; color:white; text-align:center; padding:2rem; margin-top:3rem; }
footer a { color:#f1faee; text-decoration:none; }
.leader { margin-bottom:2rem; padding:1.5rem; border-radius:8px; background:#f8f9fa; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.leader h3 { margin-top:0; color:#e63946; }
