body {
  background-color: #ffffff !important;
}

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

.intro {
  margin-bottom: 5rem;
}

.intro h1 {
  text-align: left;
}

.intro h2 {
  margin-bottom: 0.5rem;
}

.intro p {
  margin: 2rem 0;
}

.cta {
  text-align: center;
}

.button.secondary {
  background-color: #e7e7e7;
  color: #222;
}

.discover-card {
  position: relative; /* Key to position the arrow */
  display: block;
  background-color: #f2f2f2;
  padding: 4px 16px 16px 16px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.discover-more h2 {
  margin-bottom: 32px !important;
}

.discover-text {
  align-items: start;
}

.discover-text h4 {
  padding: 0;
  text-decoration: underline;
  margin: 16px 0;
}

.discover-text p {
  padding-top: 0;
  margin: 0;
}

.discover-arrow {
  position: absolute;
  top: 15px;
  right: 1rem;
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.discover-card:hover .discover-arrow {
  transform: translateX(4px); /* Optional: small animation on hover */
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .about-container {
    padding: 1rem 20px;
  }

  .discover-grid {
    grid-template-columns: 1fr;
  }

  .discover-card {
    display: inline-block;
    width: 100%; /* Ensure full width on small screens */
    margin-bottom: 1rem; /* Optional: spacing between cards */
    padding: 16px 16px 24px 16px;
  }

  .discover-arrow {
    top: 8px;
    right: 0.75rem;
  }

  .discover-text h4 {
    margin: 12px 0;
  }

  .discover-text p {
  }
}
