* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f8fa;
  color: #333;
}

.header {
  background: linear-gradient(90deg, #2b5876, #4e4376);
  color: white;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.logo {
  width: 80px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.header h1 {
  font-size: 28px;
  text-transform: uppercase;
}

.menu {
  background-color: #274b5e;
  text-align: center;
}

.menu-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-list li {
  margin: 10px;
}

.menu-list a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.menu-list a:hover {
  color: #a8dadc;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.content {
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item {
  text-align: center;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.item p {
  margin-top: 10px;
  font-weight: bold;
}

/* FOOTER */
.footer {
  background-color: #274b5e;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-list {
    flex-direction: column;
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-list.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .header h1 {
    font-size: 20px;
  }

  .logo {
    width: 60px;
  }
}
