body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom right, #00c9ff, #92fe9d);
    color: white;
}

.logo {
    width: 80px;
    margin-bottom: 1rem;
}

.highlight {
    color: #fff700;
}

.buttons .btn {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn.primary {
    background-color: #333;
    color: white;
}

.btn.primary:hover {
    background-color: #555;
}

.btn.secondary {
    background-color: white;
    color: #333;
    border: 1px solid #333;
}

.btn.secondary:hover {
    background-color: #eee;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.services {
    padding: 2rem 1rem;
    background: white;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.card {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 250px;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}

.section-link {
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.section-link:hover {
    color: #00c9ff;
    border-bottom: 2px solid #00c9ff;
}

/* --------------------------
   File input personalizzato
---------------------------*/

input[type="file"] {
    display: none; /* Nascondiamo il vero input */
}

.file-label {
    display: inline-block;
    padding: 10px 15px;
    background-color: #00c9ff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 5px;
}

.file-label:hover {
    background-color: #007bb5;
}

.file-name {
    margin-left: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
}
