/* ---------------- HERO ---------------- */
.program-hero {
    text-align: center;
    padding: 60px 20px 30px;
  }
  
  .program-hero h1 {
    font-size: 34px;
    margin-bottom: 8px;
  }
  
  .program-hero p {
    color: #666;
    font-size: 15px;
  }
  
  
  /* ---------------- PROGRAM SECTION ---------------- */
  .programs {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    align-items: stretch;
  }
  
  
  /* ---------------- CARD ---------------- */
  .program-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    width: 270px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    border: 1px solid #eee;
   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
  
  .program-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }
  
  
  /* ---------------- PRICE ---------------- */
  .price {
    font-size: 24px;
    font-weight: bold;
    margin: 6px 0;
    color: #a57d5c;
  }
  
  .price span {
    font-size: 13px;
    color: #777;
  }
  
  
  /* ---------------- DESCRIPTION ---------------- */
  .desc {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 10px;
  }
  
  
  /* ---------------- FEATURE LIST ---------------- */
  .feature-list {
    list-style: none;
    padding: 0;
    max-width: 200px;
    margin: 12px auto;
    text-align: left;
  }
  
  .feature-list li {
    display: grid;
    grid-template-columns: 28px 1fr; /* icon + text */
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
    line-height: 1.3;
    text-align: left;
  }
  
  .feature-list li span:last-child {
    display: block;
  }

  
  /* ---------------- ICON ---------------- */
 
  .icon {
    width: 24px;
    height: 24px;
    background: #f5f1ee;
    color: #a57d5c;
    border-radius: 50%;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-size: 12px;
  }
  
  
  /* ---------------- FEATURED CARD ---------------- */
  .featured {
    border: 2px solid #a57d5c;
    transform: scale(1.02);
    background: #fffdfc;
  }
  
  
  /* ---------------- BADGE ---------------- */
  .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #a57d5c;
    color: white;
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 500;
  }
  
  
  /* ---------------- BUTTONS ---------------- */
  .btn-primary {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: #e26d7d;
    color: #fff;
    border-radius: 22px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .btn-primary:hover {
    background: #d65b6b;
  }
  
  .btn-outline {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    border: 1.5px solid #a57d5c;
    color: #a57d5c;
    border-radius: 22px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .btn-outline:hover {
    background: #a57d5c;
    color: #fff;
  }
  
  
  /* ---------------- COMPARISON ---------------- */
  .comparison {
    padding: 50px 20px;
    text-align: center;
  }
  
  .table {
    max-width: 750px;
    margin: 25px auto;
  }
  
  .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 12px;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-size: 14px;
  }
  
  .header {
    font-weight: 600;
    background: #faf8f6;
  }
  
  .row div {
    text-align: center;
  }
  
  .row div:first-child {
    text-align: left;
  }
  
  /* highlight main plan */
  .row div:nth-child(3) {
    background: #fff7f5;
  }
  
  
  /* ---------------- MOBILE ---------------- */
  @media (max-width: 768px) {
  
    .program-hero h1 {
      font-size: 26px;
    }
  
    .programs {
      flex-direction: column;
      align-items: center;
    }
  
    .featured {
      transform: scale(1);
    }
  
    .row {
      grid-template-columns: 1fr 1fr;
      gap: 6px;
    }
  
    .row div:first-child {
      grid-column: span 2;
      font-weight: bold;
    }
  }