.resources-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.resources-header {
  text-align: center;
  margin-bottom: 2rem;
}

.resources-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.resources-header p {
  font-size: 1.1rem;
  color: #666;
}

.resources-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.resources-column {
  flex: 1 1 220px;
  min-width: 220px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.resources-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0077cc;
}

.resources-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources-column ul li {
  margin-bottom: 0.75rem;
}

.resources-column ul li a {
  color: #0077cc;
  text-decoration: none;
  font-size: 1rem;
}

.resources-column ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .resources-columns {
    flex-direction: column;
    align-items: center;
  }
}
