/* certifications.css - Styles specific to the certifications page */

/* Certifications Intro */
.certifications-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.certifications-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #475569;
}

/* Certificate display */
.certificate {
  display: block;
  max-width: 42%;
  margin: 0 auto 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .certifications-intro {
    padding: 60px 0 30px;
  }
  
  .certificate {
    max-width: 100%;
  }
}