.education-section {
  text-align: center;
  padding: 30px 20px;
}

.education-section h2 {
  color: inherit;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Container holding two cards */
.education-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* Each card inherits glass effect */
.edu-card {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  padding: 80px;
  border-radius: 20px;
  color: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header with year + title */
.edu-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Year badge */
.edu-year {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Title area */
.edu-title h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #060303;
}

.edu-title p {
  margin: 3px 0 0 0;
  font-size: 1.5 rem;
  color: inherit;
}

.edu-summary {
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: 10px;
}

.edu-card ul {
  padding-left: 20px;
  margin: 0;
  font-size: 1.2rem;
}

.edu-card li {
  margin-bottom: 5px;
}

/* Hover interaction */
.edu-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
