



.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 40px 20px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 25px 30px 35px;
  flex: 1 1 300px;
  max-width: 350px;
  min-height: 930px; /* equal height cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,74,173,0.2);
}

.info-card h2 {
  color: #004aad;
  font-size: 20px;
  margin-bottom: 10px;
}

.info-card h4 {
  color: #003c8a;
  margin: 10px 0 5px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 15px;
}

.info-card ul li {
  padding-left: 5px;
  margin-bottom: 4px;
}

.account {
  background: #f0f6ff;
  border-left: 4px solid #004aad;
  padding: 10px 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.account.closed {
  background: #ffe6e6;
  border-left: 4px solid #ff0000;
}

.account.closed h4 {
  color: #ff0000;
}

.account.open {
  background: #e6ffe6;
  border-left: 4px solid #008000;
}

.account.open h4 {
  color: #008000;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #004aad;
  color: #fff;
  font-weight: 600;
  padding: 12px 2px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-top: auto;
}

.btn:hover {
  background-color: #f5a623;
  color: #000;
}

.contact {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.announcement-header {
  text-align: center;
  padding: 40px 20px;
  background: #f5f8ff;
  margin-bottom: 20px;
}

.announcement-header h1 {
  color: #004aad;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.announcement-header p {
  color: #666;
  font-size: 1.2rem;
}




