body {
    background-color: c8fde9;
}
/* RESET BASE */
  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SFONDO GENERALE */
body {
    font-family: Arial, sans-serif;
    background-color: #c8f2f0; /* turchese chiaro */
    line-height: 1.6;
    color: #333;
}

/* HERO */
.hero {
    background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg') center/cover no-repeat;
    height: 300px;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.overlay h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 18px;
}

/* CONTENITORE CENTRALE */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: white;
    border-radius: 10px;
}

/* SEZIONI */
section {
    margin-bottom: 40px;
}

/* TITOLI */
h1, h2 {
    margin-bottom: 15px;
    color: #007f7f;
}

/* PARAGRAFI */
p {
    margin-bottom: 15px;
}

/* LISTE */
ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* IMMAGINI */
img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 8px;
}

/* LINK */
a {
    color: #007f7f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}