/* VARIABILI COLORI (Dalla nostra palette) */
:root {
    --bg-color: #F0F2F5;       /* Concrete Grey Light */
    --text-main: #212B36;      /* Dark Lead */
    --text-sec: #637381;       /* Mechanic Grey */
    --accent: #0084CE;         /* Technical Blue */
    --white: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* CONTENITORE CENTRALE */
.main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 800px;
}

/* STILE LOGO */
.logo-box {
    margin-bottom: 40px;
}

.logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* ELEMENTI GRAFICI */
.status-badge {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 132, 206, 0.3);
    transition: all 0.3s ease;
}

.status-badge:hover {
    background-color: #006bb3;
    box-shadow: 0 6px 15px rgba(0, 132, 206, 0.4);
    transform: translateY(-2px);
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-main);
}

p {
    color: var(--text-sec);
    line-height: 1.6;
}

/* FOOTER CON DATI AZIENDALI */
footer {
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid #DFE3E8;
    padding: 30px 20px;
    font-size: 12px;
    color: var(--text-sec);
}

.company-data {
    max-width: 1000px;
    margin: 0 auto;
}

.company-data strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.legal-text {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    margin: 0;
}
