.other-box {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  color: #000;
  box-sizing: border-box;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.other-box:hover {
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(44, 110, 165, 0.1);
}

.text-other {
  display: inline-block;
  font-size: 1.1em;
  color: #4285f4;
  font-weight: bold;
  margin-bottom: 12px;
  cursor: default;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.resource-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  transition: box-shadow 0.3s ease;
}

.resource-card:hover {
  box-shadow: 0 2px 6px rgba(44, 110, 165, 0.12);
}

.resource-card a {
  text-decoration: none;
}

.resource-card h4 {
  margin: 0;
  font-size: 1em;
  color: #4285f4;
  font-weight: bold;
  transition: color 0.3s ease;
}

.resource-card a:hover h4 {
  color: #004848;
  text-decoration: underline;
}

/* Responsive layout */
@media screen and (min-width: 600px) {
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 900px) {
  .resource-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
