body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Container Layout */
.container {
  display: flex;
  flex-wrap: wrap;
}

/* Sidebars */
.sidebar {
  background: #003366;
  color: #fff;
  width: 250px;
  padding: 2rem 1rem;
  box-shadow: 2px 0 6px rgba(0,0,0,0.1);
}

.sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
}

/* Main Content */
.content {
  flex: 1;
  padding: 2rem;
  min-width: 300px;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  color: #003366;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

#hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#contact {
  background: #fff;
  padding: 2rem;
  margin: 0 auto 2rem auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

#contact h2 {
  margin-bottom: 1rem;
  color: #003366;
}

#contact a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #003366;
  color: #fff;
  border-radius: 12px;
  margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    text-align: center;
    box-shadow: none;
  }
}
