* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    width: 100%;
    min-height: 100vh;
    background-color: #083168;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
}

.postcard {


    background-color: #fefbf3;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;

    
    
    
         width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.header {
    width: 100%;
    background-color: #fff;
}

.header img {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    background-color: #fff;
    text-align: center;
    padding: 20px;
}

.c1ontent {
    background-image: url("22veloce.png");
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

.text-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.sections {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
   
    
    
        width: 90%;
    max-width: 1200px;
    margin: 20px auto;

}

.section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border: 1px solid #ddd;
    width: 30%;
    transition: background-color 0.3s;
    margin: 10px;
    text-align: center;
}

.section:hover {
    background-color: #f1f1f1;
}

.section h3 {
    font-size: 1.5rem;
    color: #083168;
    margin-bottom: 10px;
}

.section p {
    font-size: 1rem;
    color: #0986b2;
}

.btn {
    padding: 10px 20px;
    background-color: transparent;
    color: #0986b2;
    border: 2px solid #0986b2;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #91c2d3;
    color: #fff;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .sections {
        flex-direction: column;
    }

    .section {
        width: 100%;
        margin: 10px 0;
    }
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Change to 3 columns */
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}



.car-card {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.car-card:hover {
    transform: translateY(-10px);
}

.car-card img {
    width: 100%;
    height: auto;
}

.car-info {
    padding: 20px;
}

.car-info h2 {
    font-size: 1.5rem;
    color: #083168; text-decoration: none;
}

.car-info p {
    font-size: 1rem;
    color: #0986b2;
}

.car-info span {
    color: #0986b2;
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: 1fr; /* Stack in a single column on small screens */
    }
   



}