/* Stili Generali */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #2c3e50; /* Blu scuro */
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0 0 10px;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

/* Sezioni Principali */
section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2em;
}

/* Servizi Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-item {
    background: #ecf0f1; /* Grigio chiaro */
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #3498db; /* Blu */
    margin-top: 0;
}

/* Perché Scegliere Noi */
#why-choose-us ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

#why-choose-us ul li {
    background: #eaf2f8; /* Blu chiarissimo */
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #3498db;
    border-radius: 4px;
    font-size: 1.1em;
}

/* Processo Creativo */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step span {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.5em;
    font-weight: bold;
}

.step h3 {
    color: #2c3e50;
    margin-top: 0;
}

/* Contatti */
#contact {
    text-align: center;
}

.btn-contact {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #2980b9; /* Blu più scuro al hover */
}

#contact a {
    color: #3498db;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}