/* Home Page Styles */
.text-center {
  text-align: center;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #6c757d;
}

/* Section Styles */
section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Card Styles for Home Page */
.card {
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  color: #0d6efd;
  font-weight: bold;
}

.card-text {
  color: #495057;
  font-size: 1rem;
}

/* Picture and Image Styling */
picture img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.bg-light {
  background-color: #f8f9fa !important;
}

.p-5 {
  padding: 3rem !important;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background-color: #084298;
  border-color: #084298;
}

/* Responsive Utility Classes */
@media (max-width: 768px) {
  .card {
      margin-bottom: 2rem;
  }

  .lead {
      font-size: 1.1rem;
  }
}
