:root {
  --purple-primary: #5b21b6;
  --purple-light: #8b5cf6;
  --orange-primary: #f97316;
  --blue-primary: #2563eb;
}

.top-hero-section {
  min-height: 800px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  padding: 1rem 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.top-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image Column Styles */
.image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem; /* Space between the image and buttons */
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yellow {
  background-color: #fde047;
  color: #000;
}

.btn-yellow:hover {
  background-color: #facc15; /* Added hover effect */
}

.btn-purple {
  background-color: var(--purple-primary);
  color: white;
}

.btn-purple:hover {
  background-color: var(--purple-light); /* Added hover effect */
}

/* Content Column Styles */
/* Content Column Base Styles */
.content-column {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  /* gap: 2rem; */
  max-width: 800px;
  margin-left: auto;
}

/* Header Section */
.content-column .header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* .badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #dbeafe;
  color: var(--blue-primary);
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 1rem;
} */

.badge {
  display: inline-flex; /* Use inline-flex for better alignment */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  padding: 0.5em 1em;
  background-color: #dbeafe;
  color: var(--blue-primary);
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
  /* max-width: calc(100% - 1rem);  */
  word-wrap: break-word; /* Allows long words to break and wrap onto the next line */
}

@media screen and (max-width: 480px) {
  .badge {
    padding: 0.4em 0.8em; /* Adjust padding for smaller screens */
    margin-bottom: 0.75rem; /* Adjust margin for smaller screens */
    font-size: clamp(0.65rem, 2vw, 0.9rem); /* Slightly smaller font size for small screens */
  }
}

@media screen and (max-width: 320px) {
  .badge {
    padding: 0.3em 0.6em; /* Further adjust padding for very small screens */
    margin-bottom: 0.5rem; /* Further adjust margin for very small screens */
    font-size: clamp(0.55rem, 2vw, 0.8rem); /* Even smaller font size for very small screens */
  }
}

.title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-question h5 {
  flex: 1;
  margin: 0;
  color: var(--purple-primary);
  font-weight: 600;
}

.check-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  /* background-color: #007BFF; */
}

.check-circle i {
  color: white;
  font-size: 1rem; /* Adjust size as needed */
}

.arrow-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.arrow-btn i {
  color: var(--blue-primary);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

/* Background Colors */
.blue-bg {
  background-color: #eff6ff;
}
.green-bg {
  background-color: #ecfdf5;
}
.pink-bg {
  background-color: #fdf2f8;
}
.violet-bg {
  background-color: #f5f3ff;
}

.bg-blue {
  background-color: var(--blue-primary);
}
.bg-green {
  background-color: #059669;
}
.bg-pink {
  background-color: #db2777;
}
.bg-violet {
  background-color: var(--purple-primary);
}

/* Active States */
.faq-item.active .faq-question {
  background-color: var(--orange-primary);
}

.faq-item.active .faq-question h3 {
  color: white;
  font-weight: 700;
}

.faq-item.active .arrow-btn i {
  transform: rotate(180deg);
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .top-hero-grid {
    grid-template-columns: 1fr;
  }

  .content-column {
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
  }

  .button-group {
    flex-direction: column;
    gap: 1rem;
  }

  .title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .top-hero-grid {
    display: block;
  }
  .title {
    font-size: 1.75rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

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