/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-hero .main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

.about-hero .main-description p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto 16px;
}

.about-action {
  margin-top: 32px;
}

.about-action .button {
  display: inline-block;
  text-decoration: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-action .button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.about-content {
  background: transparent;
  padding: 0;
  margin-top: 40px;
}

.about-content .desc-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-content .desc-row {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content .desc-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-content .desc-question {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.about-content .desc-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: #000;
  border-radius: 2px;
}

.about-content .desc-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.about-faq-card {
  background: #fdfdfd !important;
  border-left: 4px solid #000 !important;
}

.about-faq-card .desc-question::before {
  display: none;
}

.about-faq-card a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.2);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s ease;
}

.about-faq-card a:hover {
  text-decoration-color: #000;
}

@media (max-width: 768px) {
  .about-page {
    padding: 20px 16px;
  }
  
  .about-hero .main-title {
    font-size: 28px;
  }
  
  .about-hero .main-description p {
    font-size: 16px;
  }
  
  .about-content .desc-row {
    padding: 24px;
  }
  
  .about-content .desc-question {
    font-size: 20px;
  }
}
