/* Desktop Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  box-sizing: border-box;
}

header {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow for depth */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav ul li {
  display: inline-block;
  margin-right: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #444; /* Add hover effect for interactivity */
}

h1, h2, h3 {
  color: #333;
  text-align: center;
  margin: 30px 0 15px;
  font-size: 28px;
}

main {
  padding: 20px 40px;
  max-width: 1200px; /* Limit content width for better readability */
  margin: 0 auto;
}

footer {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

footer p {
  margin: 0;
}

/* Make images responsive but keep their aspect ratio */
img {
  max-width: 100%;
  height: auto;
  border-radius: 5px; /* Rounded corners for images */
  margin-bottom: 20px;
}

/* Section styling */
section {
  margin: 20px 0;
}

/* Embedded videos */
iframe {
  max-width: 100%;
  height: 500px; /* Set a specific height for consistency */
  border-radius: 5px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Enhance form elements */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
}

/* Add a subtle shadow effect for a more modern look */
input:focus, select:focus, textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Styling for links within content */
a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

/* Enhance spacing around headings, paragraphs, and lists */
h2, h3, p {
  margin: 20px 0;
}

ul {
  padding-left: 20px;
  list-style-type: square;
}

ul li {
  font-size: 18px;
}
