.parent-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .parent-card {
    background: linear-gradient(135deg, #153677, #2b68b5);
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .parent-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }
  
  .parent-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
  }
  
  .parent-quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 14px;
    color: #e3edff;
  }
  
  .parent-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #d7e6ff;
  }
  
  .parent-highlight {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 6px;
    color: #fcd4a6;
  }
  
  .parent-icon {
    font-size: 2.6rem;
    margin-top: 12px;
    color: #ffdd66;
  }
  
  @media (max-width: 600px) {
    .parent-title { font-size: 1.3rem; }
  }
