.edu-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 18px 56px;
  color: #1b2433;
}

.edu-hero {
  background: linear-gradient(135deg, #f7f4ff 0%, #f7fbff 100%);
  border: 1px solid #ddd7f5;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(27, 36, 51, 0.08);
}

.edu-eyebrow {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a42b5;
}

.edu-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.edu-intro {
  max-width: 860px;
  margin-top: 16px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.edu-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.edu-chip-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #1b2433;
  color: #fff;
  font-weight: 700;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.edu-card,
.edu-content {
  background: #fff;
  border: 1px solid #dde5ee;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(27, 36, 51, 0.06);
}

.edu-card-wide {
  grid-column: 1 / -1;
}

.edu-card h2,
.edu-content h2 {
  margin: 0 0 12px;
}

.edu-card p,
.edu-content p {
  line-height: 1.7;
}

.edu-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.edu-card label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: 700;
}

.edu-card input,
.edu-card textarea {
  width: 100%;
  border: 1px solid #bfd0df;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f7fbff;
}

.edu-card button {
  margin-top: 16px;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  background: #5a42b5;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.edu-card button.secondary {
  background: #fff;
  color: #5a42b5;
  border: 1px solid #d5cef5;
}

.edu-result {
  margin-top: 16px;
  min-height: 84px;
  border-radius: 16px;
  border: 1px solid #ddd7f5;
  background: #f7f4ff;
  padding: 16px;
}

.edu-result strong {
  display: block;
  margin-bottom: 8px;
  color: #5a42b5;
}

.edu-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.edu-table {
  width: 100%;
  border-collapse: collapse;
}

.edu-table th,
.edu-table td {
  border: 1px solid #e1e7ef;
  padding: 10px 12px;
  text-align: left;
}

.edu-table th {
  background: #f5f7ff;
}

.edu-table button {
  width: auto;
  margin: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: #b43b55;
}

.edu-content {
  margin-top: 24px;
}

.edu-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.edu-link-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f4ff;
  border: 1px solid #ddd7f5;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #5a42b5;
  font-weight: 600;
}

.edu-link-grid a i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 920px) {
  .edu-grid,
  .edu-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .edu-shell {
    padding: 20px 14px 44px;
  }

  .edu-hero,
  .edu-card,
  .edu-content {
    padding: 18px;
    border-radius: 18px;
  }

  .edu-form-grid {
    grid-template-columns: 1fr;
  }
}
