/* Global Reset and Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f2f5f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #0066cc;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a.active,
nav ul li a:hover {
  border-bottom: 2px solid #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0073e6, #66a6ff);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
}

/* Notices Section */
.notices {
  padding: 60px 40px;
}
.notices h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #0066cc;
}
.notice-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.notice-card {
  background: white;
  padding: 20px;
  border-left: 6px solid #0066cc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.notice-card h3 {
  margin-bottom: 10px;
}
.notice-card p {
  font-size: 0.95rem;
}
.notice-card .date {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #666;
}

/* Footer */
footer {
  background: #003d80;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}
.map-container {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.offcanvas-body .nav-link {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
