.custom-announcement-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.custom-announcement-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-announcement-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1d1d1d;
  font-family: 'Inter', sans-serif;
}

.custom-announcement-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.custom-announcement-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.custom-announcement-card {
  background-color: #f1f5f9;
  border-radius: 16px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.custom-announcement-card:hover {
  transform: translateY(-5px);
}

.custom-announcement-card h4 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 10px;
}

.custom-announcement-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

.announcement-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2563eb;
}
.announcement-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}