.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 20px;
}

.resource-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 6px solid #398424;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.resource-card h3 {
  color: #398424;
  font-size: 24px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-icon {
  width: 30px;
  height: 30px;
  background: #398424;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.resource-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-links {
  list-style: none;
  padding: 0;
}

.resource-links li {
  margin-bottom: 10px;
}

.resource-links a {
  color: #4998BE;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.resource-links a:hover {
  color: #398424;
  text-decoration: underline;
}

.coming-soon {
  background: #398424;
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: left;
  margin: 40px 20px;
}

.coming-soon h2 {
  color: white;
  margin-bottom: 15px;
}

.coming-soon p {
  color: white;
  line-height: 1.6;
}

.feedback-section {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.5;
}

.feedback-section h2 {
  margin-bottom: 10px;
}

.feedback-section p {
  margin-bottom: 20px;
}

.feedback-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feedback-form h2 {
  color: #398424;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background: #398424;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #5f4a8b;
}

@media (max-width: 768px) {
  .resources-hero h1 {
    font-size: 36px;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }
  
  .resource-card {
    padding: 20px;
  }
}