.container {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tool {
    background-color: #c4cbd846;
    width: 400px;  /* Ajusta el ancho */
    margin: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.tool img {
    width: 30%;  /* Tamaño de la imagen ajustado */
    border-radius: 10px 0 0 10px;
    margin: 5px;
}
.tool-content {
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 100%;
}
.tool-title {
    font-size: 15px;
    text-align: left;  /* Centrado a la derecha */
    flex: 1;  /* Expandir espacio del título */
}
.tool-description {
    font-size: 13px;
    text-align: justify;  /* Alineado a la derecha de la imagen y título */
}
.tool-button {
    margin-top: 5px;
    padding: 10px 15px;
    background-color: #4752C4;
    color: white;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
h2 {
    text-align: center;
    font-size: 30px;
    color: #A79AFF;
}

@media (max-width: 768px) {
    h2 {
        font-size: 25px;
    }
}