body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6fa;
    color: #333;
}

.navbar {
    background: #003e80;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.navbar .logo {
    font-size: 18px;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.btn-mini {
    padding: 5px 10px;
    background: white;
    color: #003e80;
    border-radius: 5px;
    font-weight: bold;
}

header {
    background: url('/static/img/garage.jpg') center/cover no-repeat;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero {
    background: #003e80; /* azul corporativo oscuro */
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.hero h1, 
.hero p {
    color: white;
}


.btn {
    background: #003e80;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}

.features {
    padding: 40px;
    text-align: center;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px 10px;
}
.contacto {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
}

.contacto input,
.contacto textarea {
    margin: 5px 0;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #aaa;
}

.contacto textarea {
    min-height: 80px;
}

.contacto button {
    margin-top: 10px;
    padding: 10px;
    background: #0055aa;
    border: none;
    color: white;
    border-radius: 6px;
}
