/* ===== Web Service Pricing Style (like screenshot) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: radial-gradient(circle at top, #1a2a1a, #0f0f14);
  border: 1px solid #3cff00;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 0 0 40px rgba(60,255,0,0.08);
}

.service-card.recommended {
  border: 2px solid #7CFF00;
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #7CFF00;
  color: #000;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-price {
  font-size: 1.2rem;
  color: #7CFF00;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-card ul li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7CFF00;
  font-weight: bold;
}

.service-btn {
  display: block;
  margin-top: 22px;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #7CFF00;
  color: #7CFF00;
  font-weight: bold;
}
/* ===== About Us (Buon18-style) ===== */
.about-section {
  text-align: center;
}

.about-title {
  color: #7CFF00;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-desc {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  opacity: 0.9;
}

.profile-card {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(180deg, #141a14, #0f0f14);
  border: 1px solid rgba(124,255,0,0.3);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.profile-text {
  text-align: left;
  flex: 1;
}

.profile-quote {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.profile-role {
  opacity: 0.7;
}

/* avatar */
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7CFF00;
}

/* mobile */
@media (max-width: 700px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .profile-text {
    text-align: center;
  }
}

