/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 15px 20px;
}
.navbar .logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.navbar .nav-links li a:hover {
  color: #ffcc00;
}

/* Header Banner */
.header-banner {
  background: #444;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* Main Banner */
.main-banner {
  background: #ffcc00;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
}

/* Tiles Section */
.tiles-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  padding: 20px;
}
.tile {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.tile:hover {
  transform: scale(1.03);
}
.tile img {
  width: 210;
  height: 105px;
  object-fit: cover;
}
.tile h3 {
  padding: 10px;
  font-size: 18px;
}/* CSS Document */

