/* General Page Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa; /* Light gray background */
  color: #212529; /* Bootstrap default text color */
  margin: 0;
  padding: 0;
}

/* Headings */
h1, h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Section Styling */
section {
  margin-bottom: 60px;
}

/* Responsive Images and Videos */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero and Section Headers */
header {
  background-color: #212529; /* Dark Bootstrap header */
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

/* Footer */
footer {
  background-color: #212529;
  color: white;
  padding: 20px 0;
  font-size: 0.95rem;
}

/* Card Images Section */
.row > .col-6,
.row > .col-sm-4,
.row > .col-md-3 {
  padding: 10px;
}

/* Section Titles */
section h2 {
  font-size: 1.75rem;
  text-align: center;
  color: #343a40;
}

/* Video Player */
video {
  border: none;
  outline: none;
  width: 100%;
  border-radius: 12px;
}

/* Responsive Utility (Optional Customizations) */
@media (max-width: 576px) {
  header h1 {
    font-size: 1.8rem;
  }

  section h2 {
    font-size: 1.4rem;
  }
}
