.cse-process-section {
  width: calc(100% - 48px);
  max-width: 1500px;
  margin: 76px auto 0 auto;
  padding: 66px 56px;
  background: linear-gradient(180deg, #fbfcfb 0%, #f3f7f4 100%);
  border: 1px solid #dde8e1;
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2a24;
  box-sizing: border-box;
}

.cse-process-section * {
  box-sizing: border-box;
}

.cse-process-header {
  max-width: 920px;
  margin: 0 0 50px;
}

.cse-process-label {
  display: inline-block;
  color: #004225;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.cse-process-section h2 {
  font-size: 36px;
  line-height: 1.25;
  color: #004225;
  margin: 0 0 18px;
}

.cse-process-header p {
  font-size: 17px;
  line-height: 1.85;
  color: #26342d;
  margin: 0;
  max-width: 900px;
}

.cse-process-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: stretch;
	justify-content: center;
}

.cse-process-visual-card {
  background: #ffffff;
  border: 1px solid #dce8e1;
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0, 66, 37, 0.08);
  display: flex;
  flex-direction: column;
}

.cse-process-image {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #f3f7f4;
}

.cse-process-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.cse-process-visual-content {
  padding: 0 14px 10px;
}

.cse-process-visual-content h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #004225;
  margin: 0 0 16px;
}

.cse-process-visual-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #34443b;
  margin: 0 0 18px;
}

.cse-process-visual-note {
  margin-top: 22px;
  padding: 22px 24px;
  background: #fffaf0;
  border: 1px solid #eadfbd;
  border-radius: 18px;
}

.cse-process-visual-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #3a2b13;
}

.cse-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
	justify-content: center;
}

.cse-process-card {
  background: #ffffff;
  border: 1px solid #dce8e1;
  border-radius: 24px;
  padding: 32px 28px;
  min-height: 255px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  position: relative;
}

.cse-process-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #004225;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.cse-process-card h3 {
  font-size: 21px;
  line-height: 1.35;
  color: #004225;
  margin: 0 0 16px;
}

.cse-process-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #34443b;
  margin: 0;
}

.cse-process-card::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #f2c94c;
  border-radius: 999px;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .cse-process-section {
    width: calc(100% - 40px);
    margin-top: 64px;
  }

  .cse-process-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cse-process-image {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .cse-process-grid {
    grid-template-columns: 1fr;
  }

  .cse-process-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .cse-process-section {
    width: calc(100% - 28px);
    margin-top: 54px;
    padding: 42px 24px;
    border-radius: 22px;
  }

  .cse-process-section h2 {
    font-size: 28px;
  }

  .cse-process-image {
    height: 230px;
  }

  .cse-process-visual-card {
    padding: 14px;
    border-radius: 22px;
  }

  .cse-process-visual-content {
    padding: 0 6px 8px;
  }

  .cse-process-card {
    padding: 30px 24px;
  }
}