.security-section {
  max-width: 1264px;
  margin: 160px auto;
  padding: 0 32px;
}

.sec-body {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.sec-col-left {
  width: 56%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sec-col-left .sec-box:nth-child(2) {
  background-color: #DFF6FF;
}

.sec-col-right {
  width: 44%;
  height: auto;
}

.sec-box {
  background-color: #EFF6FF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 16px;
}

.sec-icon {
  width: 56px;
  height: 56px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-box-head {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.sec-box-3 {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .security-section {
    margin: 64px auto;
    padding: 0 16px;
  }
  .sec-body {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
  .sec-col-left, .sec-col-right {
    gap: 16px;
    width: 100%;
  }
  .sec-box {
    padding: 24px;
  }
  .sec-box-head {
    flex-direction: column;
    align-items: unset;
    margin-bottom: 12px;
  }
}