 .page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

/* ===== section styles ===== */

.section-subhead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2c3e5c;
  margin-bottom: 1rem;
}

.overline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* hero / category intro */
.category-hero {
  background: linear-gradient(145deg, #f9faff 0%, #f0f3fd 100%);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 25px -8px rgba(0,20,50,0.1);
}

.category-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #0a1a32;
  max-width: 900px;
}

.category-hero p {
  font-size: 1.2rem;
  color: #2e405b;
  max-width: 800px;
  margin-bottom: 1.8rem;
}

.tagline {
  display: inline-block;
  background-color: #ff6b35;
  color: white;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
}

/* cards grid (learning categories / global companies) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.service-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  border: 1px solid #eaecf0;
  transition: all 0.2s;
}

.service-card:hover {
  border-color: #ff9f7c;
  box-shadow: 0 15px 30px -12px rgba(255,107,53,0.15);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0b1c3a;
}

.service-card p {
  color: #3f4b62;
  font-size: 1rem;
}

.badge-icon {
  display: inline-block;
  background: #ffede5;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #ff6b35;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 48px;
  margin-bottom: 1.2rem;
}

/* blog/expert insights row */
.insights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2.5rem 0 3rem;
}

.insight-item {
  flex: 1 1 250px;
  background: #fafbfe;
  padding: 1.8rem;
  border-radius: 1.5rem;
  border-left: 6px solid #ff6b35;
}

.insight-author {
  font-weight: 600;
  color: #0b1c3a;
  margin-bottom: 0.25rem;
}

.insight-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0 0.75rem;
}

.insight-excerpt {
  color: #475569;
  font-size: 0.95rem;
}

/* testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3.5rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,20,40,0.04);
  border: 1px solid #e9edf4;
}

.testimonial-card .course-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ff6b35;
  margin-bottom: 0.75rem;
}

.testimonial-card .quote {
  font-size: 1rem;
  font-style: italic;
  color: #1f2a44;
  margin: 1rem 0;
}

.testimonial-card .name {
  font-weight: 600;
  color: #0e213b;
  border-top: 1px dashed #cdd5e0;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* global companies / certifications */
.global-section {
  background: #f4f7fd;
  border-radius: 2.5rem;
  padding: 2.5rem 2rem;
  margin: 3rem 0 2.5rem;
}

.companies-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.companies-banner p {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 600px;
}

.stats-mini {
  display: flex;
  gap: 2rem;
  font-weight: 600;
  color: #0b1c3a;
}

.cert-block {
  background: white;
  padding: 2rem;
  border-radius: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cert-block h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1c3a;
}

.cert-block .small {
  color: #ff6b35;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: default;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #ff6b35;
  color: white;
}

/* utility */
.text-large {
  font-size: 1.25rem;
  color: #2a3b5a;
  margin-bottom: 1.5rem;
}

hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 2.5rem 0 1.5rem;
}

.small-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.5rem;
}
