/* styles.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #181818;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #E6F0FA;
}

header .logo {
  max-width: 200px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background-color: #E9F7EF;
  border: 1px solid #F5F5F5;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card h3 {
  margin-top: 0;
  color: #0047BA;
}

.card p {
  margin-bottom: 0;
  color: #299926;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
}

.modal-content h2 {
  color: #0047BA;
}

.modal-content p {
  color: #181818;
}

.modal-content a {
  display: inline-block;
  margin: 10px 0;
  color: #F5A623;
  text-decoration: none;
  font-weight: bold;
}

.modal-content iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}