body {
    font-family: 'Google Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.primer-apartado {
    padding: 40px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px); /* Ajusta según tu header/footer */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.box h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 28px;
    text-align: center;
}

.box p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.box ul {
    margin: 25px 0;
    padding-left: 20px;
}

.box li {
    margin-bottom: 15px;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.box li:before {
    content: "•";
    color: #3498db;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.foto, .foto2 {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}






/* Añade esto a tu CSS */
.paso {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.paso:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.enlace-destacado {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.enlace-destacado:hover {
    color: #2980b9;
    text-decoration: underline;
}

.ayuda {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #3498db;
}



/* Estilos responsivos */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .box {
        padding: 25px;
        margin: 0 0 30px 0;
    }
    
    .box h2 {
        font-size: 24px;
    }
}