/* Resources Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-header p {
  color: #666;
  font-size: 18px;
}

.resource-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.resource-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 1 1 48%;
  min-width: 300px;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-icon {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.resource-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.resource-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-details li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.resource-details li:before {
  content: "•";
  color: #2c3e50;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 0;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.resource-link:hover {
  color: #3498db;
}

.resource-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.resource-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .resource-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .resource-icon {
    width: 60px;
    height: 60px;
  }
}
