.ccf-services-section {
  background: linear-gradient(97deg, #f0fcf7 65%, #eaf6ef 100%);
  border-radius: 16px;
  margin: 0 0 48px 0;
  box-shadow: 0 2px 12px rgba(22,73,30,0.09);
  padding: 0;
  width: 100vw;
  min-width: 320px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ccf-services-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ccf-services-title {
  color: #166a2c;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 22px;
  text-align: left;
  letter-spacing: -0.01em;
  width: 100%;
  max-width: 1100px;
  padding-left: 12px;
}

.ccf-services-main {
  display: flex;
  width: 100%;
  max-width: 1100px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  min-height: 270px;
  padding: 0 12px;
}

.ccf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  gap: 13px 20px;
  align-items: start;
  justify-items: center;
  width: 64%;
  min-width: 300px;
  max-width: 540px;
}

.ccf-services-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(32,113,50,0.08);
  padding: 17px 9px 13px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1.1px solid #e2eae6;
  min-height: 96px;
  font-size: 1rem;
  width: 100%;
  max-width: 156px;
  cursor: default;
  transition: box-shadow .10s, border .10s, background .10s, transform .11s;
  pointer-events: none;
  user-select: none;
}
.ccf-services-card .icon {
  margin-bottom: 9px;
  color: #0eb97e;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccf-services-card h3 {
  color: #11713d;
  font-size: 1.01rem;
  font-weight: 700;
  margin: 0 0 3px 0;
}
.ccf-services-card p {
  color: #246a41;
  font-size: .92rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.13;
}

.ccf-services-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 195px;
  max-width: 300px;
  width: 31%;
  margin-top: 0;
}

.ccf-services-action {
  background: linear-gradient(99deg, #eaf6ef 92%, #f7fffc 100%);
  border: 1.5px solid #0eb97e;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px #e3f8f0;
  color: #11713d;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
  padding: 15px 0 11px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.14s, background 0.13s, border 0.13s;
  text-decoration: none;
  margin-bottom: 0;
  width: 100%;
  max-width: 290px;
  cursor: pointer;
  user-select: none;
  outline: none;
}
.ccf-services-action .icon {
  margin-bottom: 7px;
  color: #0eb97e;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccf-services-action:hover,
.ccf-services-action:focus {
  background: #eaf6ef;
  box-shadow: 0 5px 18px #c4ecd7;
  border-color: #127a4e;
  color: #127a4e;
  text-decoration: none;
}
.ccf-services-action-desc {
  font-weight: 400;
  font-size: 0.97em;
  color: #257e56;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .ccf-services-title { font-size: 1.13rem; padding-left: 7px; }
  .ccf-services-main { flex-direction: column; gap: 20px; align-items: center; min-height: 0; padding: 0 5px;}
  .ccf-services-grid {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
  .ccf-services-actions {
    min-width: 0;
    max-width: 360px;
    width: 100%;
    align-items: center;
    margin: 0 auto;
  }
}

@media (max-width: 650px) {
  .ccf-services-title { font-size: 1.04rem; }
  .ccf-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px 6px;
    min-width: 0;
    max-width: 99vw;
  }
  .ccf-services-card {
    min-height: 79px;
    padding: 12px 6px 9px 6px;
    font-size: 0.98rem;
    max-width: 99vw;
  }
  .ccf-services-main { padding: 0 2px;}
}

@media (max-width: 480px) {
  .ccf-services-grid { grid-template-columns: 1fr; }
  .ccf-services-card { max-width: 98vw; }
  .ccf-services-title { font-size: 0.97rem; }
}

@media (max-width: 400px) {
  .ccf-services-title { padding-left: 3px;}
}
