.lms-section{
  background:#f8fafc;
  padding:90px 20px;
}

/* HEADER */
.lms-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.lms-header h2{
  font-size:42px;
  color:#0b3c7d;
  margin-bottom:15px;
}

.lms-header h2 span{
  color:#2563eb;
}

.lms-header p{
  font-size:17px;
  color:#475569;
  line-height:1.7;
}

/* GRID */
.lms-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}


.lms-card{
  background:white;
  padding:35px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.lms-card h3{
  font-size:20px;
  color:#1d4ed8;
  margin-bottom:14px;
}

.lms-card ul{
  list-style:none;
}

.lms-card li{
  margin-bottom:10px;
  padding-left:20px;
  position:relative;
  font-size:15px;
  color:#334155;
}

.lms-card li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#2563eb;
}

/* FINANCE */
.lms-finance{
  margin-top:80px;
  background:#0b3c7d;
  padding:60px 30px;
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  border-radius:24px;
}

.finance-card{
  width:420px;
  background:rgba(255,255,255,0.1);
  padding:30px;
  border-radius:16px;
  color:white;
}

.finance-card h3{
  color:#bfdbfe;
  margin-bottom:12px;
}

.finance-card li{
  margin-bottom:8px;
  font-size:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .lms-grid{
    grid-template-columns:1fr;
  }

  .lms-header h2{
    font-size:32px;
  }
}























/* SECTION */
.registration-section{
  max-width:1200px;
  margin:auto;
  padding:90px 20px;
}

/* HEADER */
.reg-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 80px;
}

.reg-header h1{
  font-size:44px;
  color:#1d4ed8;
  margin-bottom:14px;
}

.reg-header p{
  font-size:17px;
  color:#475569;
  line-height:1.7;
}

/* STEPS */
.reg-steps{
  display:flex;
  flex-direction:column;
  gap:90px;
}

/* STEP BLOCK */
.reg-step{
  display:flex;
  align-items:center;
  gap:60px;
}

.reg-step.reverse{
  flex-direction:row-reverse;
}

/* TEXT */
.step-text{
  flex:1;
}

.step-text h3{
  font-size:24px;
  margin-bottom:12px;
  color:#0b3c7d;
}

.step-text p{
  font-size:16px;
  margin-bottom:14px;
  color:#334155;
}

.step-text ul{
  list-style:none;
}

.step-text li{
  font-size:15px;
  margin-bottom:8px;
  padding-left:22px;
  position:relative;
}

.step-text li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#2563eb;
}

/* IMAGE */
.step-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.step-image img{
  width:100%;
  max-width:420px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* OUTPUT */
.reg-output{
  margin-top:100px;
  background:#0b3c7d;
  padding:50px 40px;
  border-radius:24px;
  color:white;
}

.reg-output h2{
  font-size:28px;
  margin-bottom:20px;
  color:#bfdbfe;
}

.reg-output ul{
  list-style:none;
}

.reg-output li{
  font-size:16px;
  margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .reg-step,
  .reg-step.reverse{
    flex-direction:column;
    text-align:center;
  }
}