.objective-card {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.objective-number {
  background: linear-gradient(135deg, #375A8C, #2A4A7A);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-card {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.bulletin-card {
  border-left: 4px solid #dc2626;
  background: #fef2f2;
}

.membership-card {
  border-left: 4px solid #059669;
  background: #f0fdf4;
}

.website-card {
  border-left: 4px solid #0891b2;
  background: #f0f9ff;
}

.sidebar-card {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.sidebar-card .card-header {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
}

.btn-explore {
  background: linear-gradient(135deg, #375A8C, #2A4A7A);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: linear-gradient(135deg, #375A8C, #2A4A7A);
  color: white;
  transform: translateY(-2px);
}

.irps-logo {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.definition-box {
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}
