/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #f37059;
    margin-bottom: 10px;
}

.intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Scrollable container */
.services-scroll-wrapper {
    overflow-x: auto;
    padding: 0 20px;
}

.services-scroll {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  align-items: stretch;
}

.service-card-scroll {
  flex: 0 0 280px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 460px; /* Fixed height for all cards */
}

.service-card-scroll img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 160px; /* Adjust image height */
  object-fit: cover;
}

.service-card-scroll h2 {
  font-size: 1.2rem;
  color: #f25a40;
  margin-bottom: 10px;
}

.service-card-scroll p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
  overflow: hidden;
}

.service-card-scroll .btn {
  background-color: #e2573e;
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s;
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .services-scroll-wrapper {
        padding: 0 10px;
    }

    .service-card-scroll {
        flex: 0 0 240px;
    }
}