.sumate-section,
.sumate-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sumate-section {
  background: linear-gradient(180deg, #fff 0%, #f8f8fb 100%);
  line-height: 1.7;
  width: 100%;
  padding-bottom: 60px;
}

.sumate-container {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 15px 20px 0;
}

.sumate-hero {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sumate-hero img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

/* .sumate-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.18)
      );
    } */

.sumate-content {
  width: min(100%, 860px);
  margin: 0 auto;
}

.sumate-paragraph {
  font-size: 1rem;
  color: #000;
  text-align: justify;
  margin-bottom: 22px;
}

.sumate-box {
  margin: 38px 0 34px;
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.sumate-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #7e3f97;
  margin-bottom: 20px;
}

.sumate-list {
  padding-left: 22px;
}

.sumate-list li {
  margin-bottom: 14px;
  color: #333;
  text-align: justify;
}

.sumate-list li::marker {
  color: #7e3f97;
}

.sumate-button-wrap {
  text-align: center;
  margin-top: 38px;
}

.sumate-button {
  display: inline-block;
  text-decoration: none;
  background: #7e3f97;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  transition: .25s ease;
  box-shadow: 0 8px 18px rgba(126, 63, 151, 0.25);
}

.sumate-button:hover {
  background: #6f2f89;
  transform: translateY(-2px);
  color: #fff;
}

.sumate-logos {
  width: 100%;
  padding: clamp(28px, 4vw, 60px) 16px;
}

.sumate-logos__grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(20px, 3vw, 42px) clamp(28px, 4vw, 64px);
  align-items: center;
  justify-items: center;
}

.sumate-logos__item {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sumate-logos__item img {
  display: block;
  max-width: min(150px, 100%);
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 575px) {
  .sumate-logos__grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px;
  }

  .sumate-logos__item {
    min-height: 120px;
  }

  .sumate-logos__item img {
    max-width: 120px;
    max-height: 100px;
  }
}

@media (max-width: 768px) {
  .sumate-hero {
    /* height:250px; */
    margin-bottom: 35px;
    border-radius: 0 0 18px 18px;
  }

  .sumate-content {
    width: 100%;
  }

  .sumate-box {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .sumate-subtitle {
    font-size: 1.55rem;
  }

  .sumate-paragraph,
  .sumate-list li {
    font-size: .98rem;
  }

  .sumate-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
