/* Custom CSS for Use Markbti Page */

.use-info {
  padding: 80px 0px;
  background-color: #f7f7f7;
}

.use-info h2 {
  font-size: 30px;
  font-weight: 700;
  color: #312f3e;
  margin-bottom: 20px;
}

.use-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Step Card Styles */
.steps-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.step-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #312f3e;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #ef4910;
}

.step-card:hover::before {
  background-color: #ef4910;
  width: 6px;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(49, 47, 62, 0.1);
  position: absolute;
  top: 15px;
  right: 25px;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(239, 73, 16, 0.15);
  transform: scale(1.1);
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(239, 73, 16, 0.08);
  color: #ef4910;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background-color: #ef4910;
  color: #ffffff;
  transform: rotate(10deg);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #312f3e;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.6;
  margin-bottom: 0;
}

/* FAQ Accordion Styles */
.faq-section {
  padding: 80px 0px;
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.faq-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #312f3e;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-card.active .faq-header {
  background-color: rgba(49, 47, 62, 0.02);
  border-bottom: 1px solid #f1f1f1;
}

.faq-card.active .faq-header h4 {
  color: #ef4910;
}

.faq-icon {
  font-size: 14px;
  color: #7a7a7a;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
  color: #ef4910;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-card.active .faq-body {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-content {
  padding: 20px 25px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  border-top: none;
  background-color: #fafafa;
}

/* Page heading overlay fix */
.page-heading {
  position: relative;
}

.page-heading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.page-heading .container {
  position: relative;
  z-index: 2;
}
