/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1b1f3b;
    background-color: #fff;
    line-height: 1.6;
}

header.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.btn-primary {
    background: #00c9a7;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #009e82;
}

.features, .testimonials, .contact-form {
    padding: 60px 20px;
    text-align: center;
}

.cards, .testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card, .testimonial {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.trust {
    background: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.logos img {
    width: 120px;
    margin: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logos img:hover {
    opacity: 1;
}

.contact-form {
    background: #00c9a7;
    color: #fff;
}

.contact-form form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    background: #1b1f3b;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #13162d;
}

/* Messaggio di conferma */
.success-message {
    background: #e8f9f6;
    color: #1b1f3b;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1b1f3b;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    margin-top: 0;
}

/* Responsive */
@media(max-width: 768px) {
    .cards, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}
.contact-form {
    background-image: url('../images/form-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: #fff;
    margin-bottom: 0;
}
.faq {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: left;
    max-width: 800px;
    margin: auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #00c9a7;
    margin-bottom: 10px;
}


