/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Container to hold the cards horizontally */
.card-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
}

/* Hover effect for card */
.card:hover {
  transform: scale(1.05);
}

/* Image inside the card */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content inside the card */
.card-content {
  padding: 15px;
}

.card-title {
  font-size: 1.5em;
  color: #333;
}

.card-description {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
}

/* Link styling */
.read-more {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}
