/* styles.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #222;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #f2f2f2;
  border-bottom: 2px solid #ccc;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.nav-bar {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
  background-color: #ddd;
}

.hero {
  background: linear-gradient(to right, #d2edff, #f6faff);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  color: #555;
}

.mission {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.link-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.tile {
  background-color: #f4f4f4;
  padding: 30px;
  width: 200px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tile:hover {
  transform: scale(1.05);
  background-color: #e7f4ff;
}

.tile a {
  text-decoration: none;
  font-size: 18px;
  color: #007acc;
  font-weight: bold;
}

footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}
