/* Stili generali */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    color: #444;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #f0901e;
    color: #000;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

header .cta {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1em;
}

header .cta:hover {
    background: #000;
}

/* Sezioni */
section {
    padding: 40px 0;
}

#vantaggi ul {
    list-style-type: none;
    padding: 0;
}

#vantaggi li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Galleria prodotti */
.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    border-radius: 5px;
}

.product h3 {
    margin: 15px 0 10px;
    font-size: 1.2em;
}

.product p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #666;
}

.product .btn {
    display: inline-block;
    background: #f0901e;
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.product .btn:hover {
    background: #000000;
}

/* Testimonianze */
.testimonials blockquote {
    font-size: 1.2em;
    color: #555;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 5px solid #f0901e;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #888;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer nav ul li {
    display: inline;
}

footer nav ul li a {
    color: #f0901e;
    text-decoration: none;
}

footer nav ul li a:hover {
    text-decoration: underline;
}
