/* Save this file as styles.css */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

header {
  background-color: #0056a6;
  color: white;
  padding: 15px;
  text-align: center;
}

header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

header nav ul li {
  margin: 0 15px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  text-decoration: underline;
}

section {
  padding: 20px;
  margin: 10px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #0056a6;
  margin-bottom: 10px;
}

footer {
  background-color: #0056a6;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}

/* Specific Styles for Gallery */
.gallery {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Blog Articles */
article {
  margin-bottom: 20px;
}

article h3 {
  color: #333;
}

/* FAQ Styles */
#faq p {
  margin-bottom: 10px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form label {
  font-weight: bold;
}

form input, form textarea, form button {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  background-color: #0056a6;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #003d7a;
}
