.alumni-id-section {
  text-align: center;
  padding: 5rem 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.alumni-id-header h2 {
  font-family: "EB Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f3590;
}

.alumni-id-header .highlight {
  color: #c3a12a;
}

.alumni-id-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
  margin: 1rem 0 2rem;
  line-height: 2;
}

.order-btn {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  min-width: 5rem;
  padding: 0.5rem 1.5rem;
  background-color: #c3a12a;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.alumni-id-header .btn-two:hover {
  background-color: #a48823;
}

.alumni-id-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin-top: 4rem;
}

.alumni-id-cards .card {
  text-align: center;
  max-width: 400px;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.alumni-id-cards .card img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.alumni-id-cards .card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: #2f3590;
  margin: 1rem 0 0.5rem;
  
}

.alumni-id-cards .card p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
}

.news-section {
  text-align: center;
  padding: 4rem 2rem;
}

.news-section h2 {
  font-family: "EB Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f3590;
  margin-bottom: 2rem;
}

.membership-perks-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  line-height: 1.8;
}

.wrapper h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgb(47, 53, 144);
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'EB Garamond', serif;
}

.wrapper h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(47, 53, 144);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.wrapper ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.wrapper ul li {
  margin-bottom: 0.5rem;
}

.wrapper p {
  font-size: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.wrapper a {
  color: #0033cc;
  text-decoration: none;
}

.wrapper a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .alumni-id-section { padding: 4rem 20px; }
  .alumni-id-cards { gap: 1.5rem; }
  .membership-perks-section { padding: 4rem 20px; }
}

@media (max-width: 850px) {
  .alumni-id-cards {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .alumni-id-cards .card {
    max-width: 100%;
    width: 350px;
  }

  .alumni-id-header h2,
  .wrapper h2 { 
    font-size: 2.2rem; 
  }
}

@media (max-width: 480px) {
  .alumni-id-section { padding: 3rem 15px; }
  
  .alumni-id-header h2,
  .wrapper h2 { 
    font-size: 1.8rem; 
  }
  
  .alumni-id-cards .card h3 { 
    font-size: 1.25rem; 
  }
  
  .wrapper h3 {
    font-size: 1.2rem;
  }
}