body {
  background-color: #000000;
  color: #ffffff;
}

.site-main {
  background-color: #000000;
}

.contact-hero {
  height: 60vh;
  min-height: 400px;
}

.contact-section {
  color: #ffffff;
  background-color: #000000;
}

.contact-title {
  color: #ffffff;
}

.contact-description,
.contact-manual-contact p {
  color: #cccccc;
}

.contact-eyebrow {
  background-color: rgba(146, 71, 215, 0.2);
  color: var(--accent-color);
}

.contact-value-props {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prop-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.prop-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(146, 71, 215, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9247d7;
  flex-shrink: 0;
  font-size: 1.1rem;
  border: 1px solid rgba(146, 71, 215, 0.2);
}

.prop-text {
  display: flex;
  flex-direction: column;
}

.prop-text strong {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.prop-text span {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.4;
}

.inquiry-timeline-section {
  padding-bottom: 6rem;
  position: relative;
  background-color: #000000;
}

.timeline-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-step {
  flex: 1;
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(146, 71, 215, 0.5);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.step-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #9247d7;
  box-shadow: 0 0 10px #9247d7;
}

.step-content {
  margin-top: 1.5rem;
}

.step-title {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-desc {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.timeline-connector {
  flex: 0.5;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(146, 71, 215, 0) 0%,
    rgba(146, 71, 215, 0.5) 50%,
    rgba(146, 71, 215, 0) 100%
  );
  margin-top: 2rem;
  opacity: 0.5;
}

.faq-section {
  padding: 80px 0;
  background-color: #000000;
  position: relative;
  z-index: 10;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ca3af;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.faq-tab:hover,
.faq-tab.active {
  background: rgba(146, 71, 215, 0.1);
  border-color: #9247d7;
  color: white;
}

.faq-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-content.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  padding: 1rem 0;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
  color: #9247d7;
}

.faq-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  color: #9ca3af;
  padding-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}
