/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background-color: #003366;
  padding: 10px 0;
  text-align: center;
}

.logo-container {
  margin-bottom: 10px;
}

.logo {
  height: 70px;
}

/* Main Navigation */
.main-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

.main-nav a:hover {
  background-color: #0059b3;
  border-radius: 4px;
}

/* Top Menu Bar */
.menu-bar {
  background-color: #e3efff;
  padding: 10px 0;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
}

.menu a:hover {
  text-decoration: underline;
}

/* Dropdown Section */
.dropdowns {
  background-color: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dropdowns select {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Notice Section */
.notice {
  background-color: #fff3cd;
  color: #856404;
  padding: 15px;
  text-align: center;
  border: 1px solid #ffeeba;
  margin: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
}

/* Content Section */
.content {
  background-color: #ffffff;
  margin: 20px auto;
  max-width: 1000px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content h2 {
  color: #004080;
  margin-bottom: 10px;
}

.content p {
  margin: 10px 0;
}

.content a {
  display: inline-block;
  margin-top: 10px;
  color: #0066cc;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

/* Image Styling */
.section-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Gallery Section */
.gallery {
  text-align: center;
  padding: 30px 10px;
  background-color: #f0f8ff;
}

.gallery h2 {
  color: #004080;
  margin-bottom: 20px;
}

.gallery-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer Section */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 30px;
}

.footer-nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav, .menu, .dropdowns {
    flex-direction: column;
    align-items: center;
  }

  .main-nav a, .menu a {
    padding: 10px;
  }

  .content {
    margin: 15px;
  }
}
