.elementor-810 .elementor-element.elementor-element-84cac65{--display:flex;}.elementor-810 .elementor-element.elementor-element-84cac65.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-810 .elementor-element.elementor-element-d0bae33{width:100%;max-width:100%;}@media(min-width:768px){.elementor-810 .elementor-element.elementor-element-84cac65{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-d0bae33 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.7;
}

/* GLOBAL */
.section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch; /* PENTING BIAR SEJAJAR */
}

/* INTRO */
.intro h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.intro p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  color: #666;
}

/* ABOUT */
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* VALUE */
.value {
  background: #f7f7f7;
}

.value-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-box:hover {
  transform: translateY(-6px);
}

.value-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-box p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .intro h1 {
    font-size: 32px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .section {
    padding: 70px 0;
  }
}/* End custom CSS */