/* --- Base Main Styles --- */
main {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f7fb;
  padding-bottom: 60px;
  min-height: calc(100vh - 400px);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Hero Banner Section --- */
.hero-wrapper {
  padding-top: 30px;
  margin-bottom: 60px;
}

.hero-banner {
  background: linear-gradient(135deg, #f03e82 0%, #7c3aed 50%, #06b6d4 100%);
  border-radius: 16px;
  text-align: center;
  color: white;
  padding: 50px 20px 80px 20px;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.hero-banner h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-banner p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Floating Search Bar --- */
.search-container {
  max-width: 700px;
  margin: 0 auto;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.search-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.search-box svg {
  color: #9ca3af;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  color: #374151;
}

.search-box input::placeholder {
  color: #9ca3af;
}

/* --- Section Titles --- */
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.section-title.blue-accent::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #2563eb;
  border-radius: 4px;
}

.section-title.pink-accent::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #db2777;
  border-radius: 4px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #86efac;
  border-radius: 16px;
  padding: 24px 12px;
  text-align: center;
  text-decoration: none;
  color: #1e293b;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.service-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* Badges */
.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  color: white;
}

.badge-new { background-color: #65a30d; }
.badge-hot { background-color: #ef4444; }

/* --- Info & Content Sections --- */
.info-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  margin-top: 50px;
}

.info-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.info-box p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* --- Features Grid --- */
.features-header {
  text-align: center;
  margin: 60px 0 30px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
}

.feature-icon-wrap {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-icon-wrap.purple { color: #8b5cf6; }
.feature-icon-wrap.green { color: #10b981; }
.feature-icon-wrap.red { color: #ef4444; }
.feature-icon-wrap.blue { color: #3b82f6; }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* --- FAQ Section --- */
.faq-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  margin-top: 50px;
}

.faq-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-banner h1 { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .info-box, .faq-container { padding: 24px; }
}