/* تنسيقات قسم الشهادات */
.certificates-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.certificate-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  padding: 20px;
}

.certificate-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.certificate-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.certificate-info {
  padding: 0 15px;
}

.certificate-info h3 {
  color: #1a237e;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.certificate-info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.certificate-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.certificate-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  position: relative;
  padding-right: 25px;
}

.certificate-features li:last-child {
  border-bottom: none;
}

.certificate-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffc107;
  position: absolute;
  right: 0;
  top: 8px;
}

.certificate-cta {
  text-align: center;
  margin-top: 20px;
}

.certificate-cta .btn {
  padding: 10px 25px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .certificate-container {
    margin-bottom: 20px;
  }
}
