body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    padding-bottom: 60px;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #34495e;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.tabla-especificaciones {
    width: 100%;
    border-collapse: collapse; 
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tabla-especificaciones th, .tabla-especificaciones td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

.tabla-especificaciones th {
    background-color: #2c3e50;
    color: white;
}

.tabla-especificaciones tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tabla-especificaciones tr:hover {
    background-color: #e1e8ed;
}

ul {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    border-left: 5px solid #2c3e50;
    list-style-type: square;
}

li {
    margin-bottom: 10px;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}