.cse-industries-section {
  width: calc(100% - 48px);
  max-width: 1500px;
  margin: 76px auto 0 auto;
  padding: 64px 56px;
  background: #ffffff;
  border: 1px solid #dce8e1;
  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-industries-section * {
  box-sizing: border-box;
}

.cse-industries-header {
  max-width: 980px;
  margin-bottom: 44px;
}

.cse-industries-label {
  display: inline-block;
  color: #004225;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.cse-industries-section h2 {
  font-size: 36px;
  line-height: 1.25;
  color: #004225;
  margin: 0 0 22px;
}

.cse-industries-section p {
  font-size: 17px;
  line-height: 1.85;
  color: #26342d;
  margin: 0 0 18px;
  max-width: 980px;
}

.cse-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.cse-industry-card {
  background: #f8faf8;
  border: 1px solid #dce8e1;
  border-radius: 18px;
  padding: 22px 22px;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.025);
}

.cse-industry-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: #004225;
  box-shadow: 0 0 0 6px rgba(0, 66, 37, 0.08);
}

.cse-industry-card span {
  font-size: 16px;
  line-height: 1.45;
  color: #26342d;
  font-weight: 700;
}

.cse-industries-note {
  margin-top: 40px;
  padding: 32px 36px;
  background: linear-gradient(180deg, #fffaf0 0%, #f8f4e8 100%);
  border: 1px solid #eadfbd;
  border-left: 6px solid #004225;
  border-radius: 22px;
}

.cse-industries-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #3a2b13;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .cse-industries-section {
    width: calc(100% - 40px);
    margin-top: 64px;
  }

  .cse-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .cse-industries-section {
    width: calc(100% - 28px);
    margin-top: 54px;
    padding: 42px 24px;
    border-radius: 22px;
  }

  .cse-industries-section h2 {
    font-size: 28px;
  }

  .cse-industries-grid {
    grid-template-columns: 1fr;
  }

  .cse-industry-card {
    min-height: auto;
  }
}