/* Reset dan Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Definisikan variabel CSS untuk warna, spasi, dll. agar lebih konsisten */
  --color-primary-blue: #2563eb;
  --color-light-blue: #e0f2ff;
  --color-border-light: #bae6fd;
  --color-text-dark: #1f2d3d;
  --color-text-gray: #475569;
  --color-background-light: #f9fbfe;
  --color-background-gradient-start: #ffffff;
  --color-background-gradient-end: #eff6ff;

  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;

  --border-radius-sm: 8px;
  --border-radius-md: 10px;
  --border-radius-lg: 12px;
  --border-radius-full: 50%;

  --font-size-sm: 0.875rem; /* 14px */
  --font-size-md: 1rem;     /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.5rem;   /* 24px */
  --font-size-xxl: 2rem;    /* 32px */
  --font-size-hero-mobile: 2.5rem; /* 40px */
  --font-size-hero-desktop: 4.5rem; /* 72px */}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fbfe;
  color: #1f2d3d;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

.program-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.program-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items:center;
}

.program-text {
  flex: 1 1 500px;
}

.title-blue {
  font-size: 45px;
  font-weight: bold;
  color: #2196f3;
  margin: 0 0 10px;
}

.subtitle-black {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 20px;
}

.program-text p {
  margin-bottom: 16px;
  text-align: justify;
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #2196f3;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1976d2;
}

.program-images {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60px;
}

.bg-shape {
  position: absolute;
  top: 50px;
  left: 40px;
  width: 85%;
  height: 70%;
  background-color: #f1f1f1;
  border-radius: 16px;
  z-index: 0;
}

.program-images img {
  border-radius: 12px;
  object-fit: cover;
}

.img-top {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  left: 70px;
  top: -80px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);;
}

.img-bottom {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  right: 60px;
  bottom: 70px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);;
}

.program-section-1 {
  padding: 60px 0px 120px;
  max-width: 1200px;
  margin: auto;
}

.program-container-reverse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 0;
}

.program-text-1 {
  flex: 1 1 500px;
}

.title-blue-1 {
  font-size: 45px;
  font-weight: bold;
  color: #2196f3;
  margin: 0 0 10px;
}

.subtitle-black-1 {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 20px;
}

.program-text-1 p {
  margin-bottom: 16px;
  font-size: 18px;
  text-align: justify;
}

.subtitle-black-light {
  font-size: 21px
}

.subtitle-black-list {
  font-size: 18px;
}

.program-images-1 {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.image-wrapper-1 {
  position: relative;
  width: 500px;
  height: 500px;
  padding-top: 60px;
}

.bg-shape-left {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background-color: #f1f1f1;
  border-radius: 16px;
  z-index: 0;
}

.program-images-1 img {
  border-radius: 12px;
  object-fit: cover;
}

.img-top-1 {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 500px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  right: -37.5px;
  bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tagline-section {
  background-color: #e0f2ff; /* biru muda */
  padding: 20px 20px 80px;
  text-align: center;
}

.tagline-content {
  max-width: 800px;
  margin: 0 auto;
}

.tagline-logo {
  width: 200px;
  margin-bottom: 5px;
}

.tagline-beqal{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.8;
  color: #0f172a;
  margin-bottom: 10px;
}

.tagline-text {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  color: #0f172a;
}

.tagline-text q {
  font-style: italic;
  font-weight: 500;
  color: #1e293b;
}

.tagline-source {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  color: #0f172a;
}

.benefits-section {
  padding: 60px 20px 120px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefit-subtitle {
  color: #2196f3;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 25px;
}

.benefit-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #111;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background-color: #fdfdfd;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.benefit-card.blue {
  background-color: #e7f4ff;
}

.benefit-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2196f3;
  margin-bottom: 12px;
}

.benefit-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.benefit-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* MEDIA QUERIES UNTUK RESPONSIF */  
