/* === Reset & Base === */
body {
  margin: 0;
  padding: 0 20px;
  font-family: sans-serif;
  color: #333;
  line-height: 1.5;
}

/* a) Titolo in verde e centrato */
.title {
  color: #53d769 !important;
  text-align: center !important;
  font-size: 2.5em;
  margin: 0 auto; 
}

/* Link verdi */
.green-link {
  color: #53d769;
  text-decoration: none;
}

/* === Features Section === */
.features {
  margin: 30px 0;
  align-items: center;
}
.features-inner {
  display: flex;
  align-content: center;
  text-align: left;
  align-items: flex-start;
  gap: 20px;
}
.features-inner img {
  max-width: 200px;
  border-radius: 50%;
}
.features-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-inner li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.features-inner li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #53d769;
  font-size: 1.2em;
  line-height: 1;
}

/* d) Contact Section: tre elementi centrati orizzontalmente */
.contact-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}
.contact-item {
  text-align: center;
  max-width: 200px;
}
.contact-item i {
  font-size: 48px;
  color: #53d769;
  margin-bottom: 10px;
}
.contact-item h3 {
  color: #53d769;
  margin: 10px 0 5px;
  font-size: 1.1em;
}
.contact-item p {
  margin: 0;
  font-size: 0.95em;
}
.contact-item p a {
  color: #333;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  margin: 50px 0;
  font-size: 0.9em;
}
footer .heart {
  color: red;
  margin: 0 5px;
}
