* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 60%;
	color: #000;
    margin: 0 auto;
}
.container2 {
    /*width: 60%;*/
	color: #000;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
    }

    .logo {
        top: 15px; /* Ajusta según necesites */
    }
}


/* General Styles for Section */
.inspirate-section {
  background-color: #f9f9f9; /* Light background for contrast */
  padding: 1%;
  color: #333;
  font-family: Arial, sans-serif;
}

.inspirate-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.inspirate-section h2 {
  font-size: 36px;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.inspirate-section .intro {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.inspirate-section h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.inspirate-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.project-example, .project-potential {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.project-potential ul {
  list-style-type: disc;
  margin-left: 20px;
}

.project-potential li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.project-potential li strong {
  color: #333;
}

@media (max-width: 768px) {
  .inspirate-section h2 {
    font-size: 28px;
  }
  .inspirate-section h3 {
    font-size: 24px;
  }
  .inspirate-section p, .project-potential li {
    font-size: 15px;
  }
}
/* Restablecer márgenes y rellenos */


.lampara-img {
  float: right;              /* Hace que la imagen flote a la izquierda */
  margin: 0 15px 10px 0;    /* Espacio alrededor de la imagen: derecha y abajo */
  width: 150px;             /* Ajusta el ancho de la imagen según tus necesidades */
  border-radius: 8px;       /* Bordes redondeados opcionales */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra opcional */
}
/* Footer */
footer {
    background-color: #888;
    color: #000;
    text-align: center;
    padding: 10px 20px;
	position:static; /* en general css esta fixed.
    margin-top: auto; /* Asegura que el footer permanezca al final del contenido */
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}