* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: #f5f5f5;
  color: #111;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo-img {
  height: 40px;
  width: auto;
  transform: scale(1.5);
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

nav a:hover {
  color: #8B0000;
}

/* HERO */
.hero {
  height: 50vh;
  display: flex;
  align-items: center;
  padding-left: 60px;
  background: linear-gradient(to right, #111, #333);
  color: white;
}

.hero h1 {
  font-size: 60px;
  color: white;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
}

.hero button {
  margin-top: 25px;
  padding: 12px 25px;
  border: none;
  background: #8B0000;
  border-radius: 4px;
  letter-spacing: 1px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #a30000;
  transform: translateY(-2px);
}

/* SERVIZI */
.services {
  padding: 100px 60px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
}

.cards {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.card {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 10px;
  transition: 0.3s;
  border-top: 4px solid #8B0000;
}

.card:hover {
  transform: translateY(-10px);
}
