/* Stile base */
body {
  font-family: Arial, sans-serif;
  background-color: #fff7e8;
  margin: 0;
  padding: 0;
}
<script>
  function toggleMenu() {
    const menu = document.getElementById("sideMenu");
    menu.style.left = (menu.style.left === "0px") ? "-250px" : "0px";
  }
</script>


header, footer {
  background-color: #353f40;
  color: white;
  padding: 20px;
  text-align: center;
}

header .logo img {
  width: 160px;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  color: #353f40;
  margin-bottom: 10px;
}

.hero p {
  color: #444;
  font-size: 18px;
}

/* Dashboard section */
.dashboard {
  padding: 20px;
  text-align: center;
}

.dashboard h2 {
  color: #353f40;
  margin-bottom: 30px;
}

.tool-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tool-card {
  background-color: white;
  color: #353f40;
  border: 2px solid #353f40;
  border-radius: 12px;
  padding: 20px 30px;
  text-decoration: none;
  width: 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.tool-card:hover {
  background-color: #f4eada;
}

.tool-title {
  font-weight: bold;
  font-size: 16px;
}

.tool-arrow {
  font-size: 20px;
}


footer {
  margin-top: 40px;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  height: 4px;
  background-color: white;
  border-radius: 2px;
}


.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #353f40;
  padding-top: 60px;
  transition: left 0.3s;
  z-index: 1000;
}

.side-menu a {
  display: block;
  padding: 1rem;
  color: #fff7e8;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.side-menu a:hover {
  background-color: #2b3334;
}
