.cse-training-needs-section {
  width: calc(100% - 48px);
  max-width: 1500px;
  margin: 76px auto 0 auto;
  padding: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2a24;
  box-sizing: border-box;
}

.cse-training-needs-section * {
  box-sizing: border-box;
}

.cse-training-needs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: stretch;
  justify-content: center;
}

/* LEFT CARD */
.cse-training-intro-card {
  background: linear-gradient(180deg, #fbfcfb 0%, #f3f7f4 100%);
  border: 1px solid #dde8e1;
  border-radius: 28px;
  padding: 36px 36px 44px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
  display: flex;
  flex-direction: column;
}

.cse-training-image {
  width: 100%;
  height: 255px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid #dce8e1;
  box-shadow: 0 12px 30px rgba(0, 66, 37, 0.07);
  background: #ffffff;
}

.cse-training-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.cse-training-label {
  display: inline-block;
  color: #004225;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.cse-training-intro-card h2,
.cse-course-needs-card h2 {
  font-size: 34px;
  line-height: 1.25;
  color: #004225;
  margin: 0 0 24px;
}

.cse-training-intro-card p,
.cse-course-needs-card p {
  font-size: 17px;
  line-height: 1.85;
  color: #26342d;
  margin: 0 0 18px;
}

.cse-training-highlight {
  margin-top: 28px;
  padding: 28px 30px;
  background: #ffffff;
  border-left: 6px solid #004225;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.035);
}

.cse-training-highlight h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
  color: #004225;
}

.cse-training-highlight p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #34443b;
}

.cse-financing-small-box {
  margin-top: 24px;
  padding: 24px 26px;
  background: #fffaf0;
  border: 1px solid #eadfbd;
  border-radius: 18px;
}

.cse-financing-small-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  color: #004225;
}

.cse-financing-small-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #3a2b13;
}

/* RIGHT CARD */
.cse-course-needs-card {
  background: #ffffff;
  border: 1px solid #dce8e1;
  border-radius: 28px;
  padding: 48px 44px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
}

.cse-course-needs-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
	justify-content: center;
}

.cse-course-needs-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 24px;
  background: #f8faf8;
  border: 1px solid #dce8e1;
  border-radius: 20px;
}

.cse-course-needs-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #004225;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

.cse-course-needs-item h3 {
  margin: 0 0 8px;
  color: #004225;
  font-size: 19px;
  line-height: 1.35;
}

.cse-course-needs-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #34443b;
}

.cse-course-needs-contact {
  margin-top: 32px;
  padding: 28px 30px;
  background: #fffaf0;
  border: 1px solid #eadfbd;
  border-radius: 22px;
}

.cse-course-needs-contact p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #3a2b13;
}

.cse-course-needs-button {
  display: inline-block;
  background: #004225;
  color: #ffffff !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(0, 66, 37, 0.14);
}

.cse-course-needs-button:hover {
  background: #0b5a38;
}

@media (max-width: 1050px) {
  .cse-training-needs-section {
    width: calc(100% - 40px);
    margin-top: 64px;
  }

  .cse-training-needs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cse-training-image {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .cse-training-needs-section {
    width: calc(100% - 28px);
    margin-top: 54px;
  }

  .cse-training-intro-card,
  .cse-course-needs-card {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .cse-training-image {
    height: 220px;
    border-radius: 18px;
    margin-bottom: 28px;
  }

  .cse-training-intro-card h2,
  .cse-course-needs-card h2 {
    font-size: 28px;
  }

  .cse-course-needs-item {
    grid-template-columns: 1fr;
  }
}
