.core-values {
  padding: 80px 20px;
  background: #f5f5f5;
}

.core-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT IMAGE */
.core-image {
  flex: 1;
}

.core-image img {
  width: 100%;
  max-width: 650px;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* RIGHT CONTENT */
.core-content {
  flex: 1;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}

.core-content h2 {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
  line-height: 1.2;
}

.subtitle {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
}

/* VALUE ITEMS */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  width: 100%;
}

.value-item > div:last-child {
  flex: 1;
}

.icon-box {
  width: 52px;
  min-width: 52px;
  height: 52px;
  background: #2f7fda;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  color: #fff;
  font-size: 22px;
}

/* TEXT RESET */
.value-item h3,
.value-item p {
  margin: 0;
}

.value-item h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.value-item p {
  font-size: 17px;
  color: #333;
  line-height: 1.5;
  margin-top: 8px;
  max-width: 550px;
}

/* TABLET */
@media (max-width: 992px) {
  .core-container {
    flex-direction: column;
    gap: 35px;
  }

  .core-image img {
    max-width: 100%;
    height: 380px;
  }

  .core-content h2 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }

  .value-item h3 {
    font-size: 24px;
  }

  .value-item p {
    font-size: 16px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .core-values {
    padding: 60px 15px;
  }

  .core-container {
    gap: 25px;
  }

  .core-image img {
    height: 260px;
  }

  .core-content h2 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .value-item {
    gap: 14px;
    margin-bottom: 22px;
  }

  .value-item h3 {
    font-size: 21px;
  }

  .value-item p {
    font-size: 14px;
    margin-top: 6px;
  }

  .icon-box {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .icon-box i {
    font-size: 18px;
  }
}
