/* Italian Theme: Green (#008C45), White (#FFFFFF), Red (#CD212A) */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9; /* Light background for readability */
    color: #333;
}
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: #008C45; /* Green */
    padding: 0.75rem 0;
}
nav a {
    color: #c90000; /* White text */
    text-decoration: none;
    font-weight: 500; 
    font-size: 1.25rem; /* Adjust the size as needed */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s;
}
nav a.active, nav a:hover {
    background: #008C45; /* Red */
}
header {
    text-align: center;
    padding: 1.5rem 1rem 1rem 1rem;
    background: #000000; /* Red */
    color: #008c1e; /* Green */
    font-size: 1.25rem; /* Adjust the size as needed */
    line-height: 1.6; /* Optional: improve readability */
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.truck-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #c90000; /* Green */
    color: #fff; /* White text */
    margin-top: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.5);
}
.modal-content {
    background: #fff; /* White */
    margin: 10% auto;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    max-width: 350px;
    text-align: center;
    position: relative;
}
.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    color: #CD212A; /* Red */
    cursor: pointer;
}
.modal-content h3 {
    margin-top: 0;
    color: #008C45; /* Green */
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    header {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    main {
        padding: 0.5rem;
    }
    .truck-img {
        border-radius: 8px;
    }
}