.resources-section {
  padding: 4rem 1rem;
  background: #f8f9fb;
  text-align: center;
}

.resources-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.resources-intro {
  color: #555;
  margin-bottom: 2.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1120px;
  margin: auto;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.card h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.card p {
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-premium {
  border: 2px dashed #c9a227;
  background: #fffdf6;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #2a6df4;
  color: #fff;
}

.btn-primary:hover {
  background: #1f55c7;
}

.btn-secondary {
  background: #c9a227;
  color: #000;
}

.btn-secondary:hover {
  background: #b08f1e;
}
