/* General Styles for the Blog Page */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Navbar Styling */
.navbar {
  border-bottom: 1px solid #ddd;
}
.nav-link {
  color: #333;
}
.nav-link:hover {
  color: #007bff;
}

/* Blog Section Header */
.blog-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #444;
  text-align: center;
}

/* Blog Cards */
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px !important; /* Adjust the spacing as needed */

}

.card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
}

.card img {
  height: 200px;
  object-fit: cover;
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border: none;
}
.btn-primary:hover {
  background-color: #0056b3;
}

/* Blog Page Container */
.container {
  max-width: 1200px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 1rem 0;
}
footer p {
  margin: 0;
}
