/* Container Spacing */
.pain-points-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color:#09090b
}


.showcase-card {
  display: flex;
  flex-direction: column;
  background-color: #f7f9fa; /* Light, clean gray from the image */
  border-radius: 24px; 
  padding: 30px;
  margin-bottom: 40px;
  gap: 30px;
  align-items: center;
}

/* Reversing the layout for alternating blocks on desktop */
.showcase-card.reverse {
  flex-direction: column; /* Keeps it stacked on mobile */
}

/* Media Container */
.showcase-media {
  flex: 1;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Gives the video/image depth */
}

.showcase-video, 
.showcase-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Container */
.showcase-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #09090b;
  letter-spacing: -0.02em; 
}

.showcase-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #27272a;
  margin-bottom: 25px;
}

.showcase-content p strong {
  color: #09090b;
}

/* Basic Button Styling (Adjust to match your existing buttons) */
.btn-primary {
  display: inline-block;
  background-color: #f97316; /* Change to your brand color */
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #f97316;
}

/* --- Desktop Layout --- */
@media (min-width: 992px) {
  .showcase-card {
    flex-direction: row;
    padding: 60px;
    gap: 60px;
  }
  
  .showcase-card.reverse {
    flex-direction: row-reverse;
  }
}
