/* File: /assets/css/certification.css */

.aiolo-cert-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Outfit", sans-serif;
}

.aiolo-cert-header {
  text-align: center;
}

.aiolo-cert-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.aiolo-cert-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.aiolo-cert-pricing h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.aiolo-cert-pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.aiolo-cert-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  flex: 1 1 45%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
  min-width: 280px;
}

.aiolo-cert-box.highlighted {
  border: 2px solid #6d28d9 !important;; /* Aiolo purple */
  background: #f5f0ff !important;; /* Light purple background used in sidebar */
}

.aiolo-cert-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.aiolo-cert-box p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.aiolo-cert-box ul {
  text-align: left;
  margin: 0 auto 20px;
  max-width: 240px;
  padding-left: 20px;
}

.aiolo-cert-button {
  display: inline-block;
  background: #6d28d9 !important; /* Aiolo Purple */
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.aiolo-cert-button:hover {
  background: #eee !important;
  color: #00ffe0 !important; /* Aiolo Aqua */
}

.aiolo-cert-footer {
  margin-top: 40px;
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.aiolo-cert-footer h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.aiolo-cert-footer p {
  font-size: 1rem;
  color: #555;
}
.aiolo-cert-header .badge-img {
  margin: 20px auto;
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
}
.cert-checklist {
  text-align: left;
  max-width: 320px; /* optional for nicer wrapping */
  margin: 0 auto;   /* center the block itself */
}
.aio-cert-overview {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 20px;
  /*background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  font-family: 'Outfit', sans-serif;*/
}

.overview-title {
  font-size: 2rem;
  text-align: center;
  color: #6d28d9;
  margin-bottom: 10px;
}

.estimated-time {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
}

.overview-section {
  margin-bottom: 30px;
}

.overview-section h2 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.overview-section p, .overview-section ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.overview-section ul {
  padding-left: 1.2em;
}

.overview-section ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.overview-cta {
  text-align: center;
  margin-top: 40px;
}

.start-module-button {
  background: #6d28d9;
  color: white !important;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.start-module-button:hover {
  background: #f0f0f0;
  color: #00ffe0 !important;
}


.module-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
}

.module-progress {
  text-align: center;
  color: #6d28d9;
  font-weight: 600;
  margin-bottom: 10px;
}

.module-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.code-example {
  background: #f4f4f4;
  padding: 16px;
  border-left: 4px solid #6d28d9;
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 20px;
  overflow-x: auto;
}

.module-footer {
  text-align: center;
  margin-top: 40px;
}

.module-next {
  background: #6d28d9;
  color: white !important;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.module-next:hover {
  background: #f0f0f0;
  color: #00ffe0 !important;
}


