/* ===== GENERAL LAYOUT ===== */
body { font-family: Arial, sans-serif; color: #1a1a1a; background: #f5f7fa; margin: 0; }

header {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 24px 20px 0;
}
header img  { height: 60px; margin-bottom: 8px; }
header h1   { font-size: 1.8rem; margin-bottom: 4px; }
header p    { font-size: 0.9rem; color: #c8d8f0; margin-bottom: 12px; }

main { max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  border-radius: 12px;
  padding: 56px 48px;
  margin: 40px 0;
  text-align: center;
}
.hero h2   { font-size: 2rem; margin-bottom: 18px; line-height: 1.3; }
.hero p    { font-size: 1.05rem; color: #c8d8f0; max-width: 720px; margin: 0 auto 28px; line-height: 1.7; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #003366;
  color: #fff;
  border-radius: 10px;
  padding: 40px 40px 36px;
  margin: 32px 0;
  text-align: center;
}
.page-hero h2 { font-size: 1.7rem; margin-bottom: 12px; }
.page-hero p  { color: #c8d8f0; font-size: 1rem; max-width: 680px; margin: 0 auto; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #ffcc00;
  color: #003366;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover  { background: #e6b800; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #004080;
  border: 2px solid #004080;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #004080; color: #fff; }

/* ===== STATS ===== */
.stats-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.stat {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-top: 4px solid #004080;
}
.stat strong { display: block; font-size: 2rem; color: #003366; }
.stat span   { font-size: 0.82rem; color: #555; line-height: 1.4; }

/* ===== SECTION BLOCKS ===== */
.section-block {
  background: #fff;
  border-radius: 10px;
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.section-block h2 {
  font-size: 1.5rem;
  color: #003366;
  border-bottom: 3px solid #ffcc00;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.section-block a { color: #004080; }
.section-intro { color: #444; margin-bottom: 24px; font-size: 0.97rem; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.card {
  background: #f5f8ff;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #004080;
}
.card h3 { color: #003366; font-size: 1rem; margin-bottom: 8px; }
.card p  { color: #444; font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.service-item {
  background: #f5f8ff;
  border-radius: 8px;
  padding: 20px 22px;
  border-top: 4px solid #004080;
}
.service-item h3 { color: #003366; font-size: 1rem; margin-bottom: 8px; }
.service-item p  { color: #444; font-size: 0.88rem; line-height: 1.65; margin: 0; }
.text-center     { text-align: center; }

/* ===== TRUST SECTION ===== */
.trust-section p { color: #444; line-height: 1.7; margin-bottom: 20px; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  background: #e8f0fb;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.82rem;
  color: #555;
}
.badge strong { display: block; color: #003366; font-size: 0.95rem; margin-top: 2px; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid #e5eaf2;
  padding: 16px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: #003366; font-size: 1rem; margin-bottom: 8px; }
.faq-item p  { color: #444; font-size: 0.92rem; line-height: 1.7; margin: 0; }
.faq-item a  { color: #004080; }

/* ===== BLOG CTA ===== */
.blog-cta-section { text-align: center; }
.blog-cta-section h2 { border: none; padding: 0; margin-bottom: 12px; }
.blog-cta-section p  { color: #555; margin-bottom: 20px; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  margin-bottom: 28px;
}
.contact-info   { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.contact-info h3 { color: #003366; margin-bottom: 20px; font-size: 1.2rem; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.4rem; }
.contact-item div strong { display: block; color: #003366; font-size: 0.85rem; margin-bottom: 2px; }
.contact-item div a, .contact-item div span { color: #444; font-size: 0.92rem; text-decoration: none; }
.contact-item div a:hover { color: #004080; text-decoration: underline; }
.trust-block { background: #f5f8ff; border-radius: 8px; padding: 18px; margin-top: 20px; }
.trust-block h3 { color: #003366; font-size: 1rem; margin-bottom: 12px; }
.trust-block ul { list-style: none; padding: 0; margin: 0; }
.trust-block ul li { color: #333; font-size: 0.88rem; padding: 5px 0; }
.contact-form-wrap { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.contact-form-wrap h3 { color: #003366; margin-bottom: 20px; font-size: 1.2rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d8e8;
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: Arial, sans-serif;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #004080;
}

/* ===== EVENTS PAGE ===== */
.event-card {
  border: 1px solid #e0e8f5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
}
.featured-event {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-left: 5px solid #004080;
}
.event-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-details { padding: 28px; }
.event-details h3 { color: #003366; margin-bottom: 12px; }
.event-details p  { color: #444; font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }
.event-details ul { color: #444; font-size: 0.9rem; line-height: 1.8; margin: 0 0 16px 20px; }
.event-badge {
  display: inline-block;
  background: #e8f0fb;
  color: #004080;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.event-meta span { font-size: 0.82rem; color: #555; }
.event-cta-block { text-align: center; }
.event-cta-block h2 { border: none; padding: 0; }

/* ===== CAREERS PAGE ===== */
.job-card {
  border: 1px solid #e0e8f5;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 18px;
  border-left: 5px solid #004080;
  background: #fff;
}
.job-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.job-header h3 { color: #003366; margin: 0; font-size: 1.05rem; }
.job-badge {
  background: #e8f8ee;
  color: #27ae60;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.job-card p { color: #444; font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.job-meta span { font-size: 0.82rem; color: #555; }
.alumni-section p { color: #444; line-height: 1.75; margin-bottom: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 36px 24px; }
  .hero h2 { font-size: 1.5rem; }
  .page-hero { padding: 28px 20px; }
  .section-block { padding: 24px 18px; }
  .stats-section { gap: 10px; }
  .contact-layout { grid-template-columns: 1fr; }
  .featured-event { grid-template-columns: 1fr; }
  .event-image img { max-height: 200px; }
}
