    .texto-expansible {
  cursor: pointer;
}

#contenido {
  display: none;
  margin-top: 10px; /* Mover un poco hacia abajo */
  margin-left: 20px; /* Mover un poco hacia la derecha */
}

.container {
    width: 90%;
    margin: auto;
    max-width: 800px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.form-group {
    flex: 1;
    margin-right: 10px;
}

.form-group:last-child {
    margin-right: 0;
}

textarea#message {
    width: 100%;
    height: 150px; /* Ajusta a tus necesidades */
}

input[type="text"], input[type="email"], textarea {
    width: 100%; /* Ajusta a tus necesidades */
    padding: 8px;
    margin-top: 4px;
    box-sizing: border-box; /* Para incluir el padding y el borde en el ancho total */
}

input[type="submit"] {
    background-color: #4CAF50; /* Verde */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

