.as-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.as-support-card {
  background: var(--background-color);
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.as-support-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.as-support-card i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: block;
}

.as-support-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #000;
}

.as-support-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.as-support-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.as-support-card li {
  font-size: 13px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.as-support-card li::before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  transform: translateY(2px);
}

.as-intro-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.as-intro-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.as-intro-img img {
  width: 100%;
  display: block;
}

.as-intro-content {
  flex: 1.2;
}

.as-intro-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .as-intro-flex {
    flex-direction: column;
  }
}

.as-help-bar {
  background: #fafafa;
  padding: 50px 0;
  text-align: center;
}

.as-help-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.as-help-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  padding: 15px 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}

.as-help-item:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.as-help-item i {
  color: var(--secondary-color);
}

.as-faq-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.as-faq-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}

.as-faq-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .as-faq-grid {
    grid-template-columns: 1fr;
  }
}