

/* You can replace the 'new-training-section' prefix with something else if you prefer.
   This ensures the new styles don't clash with your existing website styles. */
.new-training-section {
  font-family: 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 16px;
  color: #1a1a1a;
}

/* HERO */
.new-training-section .cpt-hero {
  text-align: center;
  padding: 48px 16px 32px;
  border-bottom: 1px solid #e8e8e8;
}
.new-training-section .cpt-badge {
  display: inline-block;
  background: #e8f0fb;
  color: #1a56a8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.new-training-section .cpt-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}
.new-training-section .cpt-subtitle {
  font-size: 15px;
  color: #666;
  margin: 0 0 16px;
}
.new-training-section .cpt-refund-banner {
  display: inline-block;
  background: #e4edf6;
  border: 1px solid #4a66c3;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  color: #15416b;
}

/* PLANS */
.new-training-section .cpt-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px 0;
}
@media (max-width: 600px) {
  .new-training-section .cpt-plans { grid-template-columns: 1fr; }
}
.new-training-section .cpt-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.new-training-section .cpt-card--featured {
  border: 2px solid #1a56a8;
}
.new-training-section .cpt-popular-badge {
  display: inline-block;
  background: #e8f0fb;
  color: #1a56a8;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.new-training-section .cpt-plan-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111;
}
.new-training-section .cpt-plan-tagline {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  line-height: 1.5;
}
.new-training-section .cpt-price {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.new-training-section .cpt-duration {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}
.new-training-section .cpt-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 14px 0;
}
.new-training-section .cpt-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.new-training-section .cpt-features li {
  font-size: 13px;
  color: #555;
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.new-training-section .cpt-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #eaf6e4;
  border-radius: 50%;
  font-size: 9px;
  color: #2e6b15;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 16px;
  text-align: center;
}

/* BUTTONS */
.new-training-section .cpt-btn {
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-align: center;
}
.new-training-section .cpt-btn:hover { background: #f5f5f5; }
.new-training-section .cpt-btn--primary {
  background: #1a56a8;
  color: #fff;
  border-color: #1a56a8;
}
.new-training-section .cpt-btn--primary:hover { background: #0d3d80; border-color: #0d3d80; }
.new-training-section .cpt-btn--full { width: 100%; margin-top: 6px; padding: 12px; font-size: 14px; }

/* WHO SHOULD ATTEND */
.new-training-section .cpt-who {
  padding: 8px 0 28px;
}
.new-training-section .cpt-who-title {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.new-training-section .cpt-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .new-training-section .cpt-who-grid { grid-template-columns: 1fr; }
}
.new-training-section .cpt-who-item {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: #444;
}

/* FORM */
.new-training-section .cpt-form-wrap {
  border-top: 1px solid #e8e8e8;
  padding: 32px 0;
}
.new-training-section .cpt-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.new-training-section .cpt-form-sub {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
}
.new-training-section .cpt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .new-training-section .cpt-form-row { grid-template-columns: 1fr; }
}
.new-training-section .cpt-form-group {
  margin-bottom: 14px;
}
.new-training-section .cpt-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}
.new-training-section .cpt-form-group input,
.new-training-section .cpt-form-group select,
.new-training-section .cpt-form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 13px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.new-training-section .cpt-form-group input:focus,
.new-training-section .cpt-form-group select:focus,
.new-training-section .cpt-form-group textarea:focus {
  border-color: #1a56a8;
  box-shadow: 0 0 0 3px rgba(26,86,168,0.1);
}
.new-training-section .cpt-success {
  display: none;
  background: #eaf6e4;
  border: 1px solid #8bc34a;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: #2e6b15;
}

/* CONTACT */
.new-training-section .cpt-contact {
  border-top: 1px solid #e8e8e8;
  padding: 24px 0 32px;
  text-align: center;
  font-size: 13px;
  color: #888;
  line-height: 2;
}
.new-training-section .cpt-contact a {
  color: #1a56a8;
  text-decoration: none;
}
.new-training-section .cpt-contact a:hover { text-decoration: underline; }




