/* GUIDELINE PAGE */
.guideline-page {
  padding: 80px 20px;
  background: #f0f1dd;
}

.guideline-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.guideline-header {
  text-align: center;
  margin-bottom: 50px;
}

.guideline-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.guideline-header p {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
}

/* TABS */
.guideline-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.tab-btn {
  background: #fff;
  border: 2px solid #ddd;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.tab-btn:hover {
  border-color: #FFC107;
}

/* TAB CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* GUIDELINE BOX */
.guideline-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.guideline-box h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-left: 12px;
}

.guideline-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 22px;
  background: #FFC107;
  border-radius: 4px;
}

.guideline-box ul {
  padding-left: 20px;
}

.guideline-box li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

/* PROMISE BOX */
.guideline-promise {
  margin-top: 40px;
  background: #495057;
  color: #ffc107;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
}

.guideline-promise.dark {
  background: #495057;
  color: #ffc107;
  font-weight: 300;
}
