.investors{
    background: #f5f9ff;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.investors p{
    color: #3589F1;
    font-weight: 700;
}


.investors .links{
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 60px;
}
.investors .links a {
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
    color: black;
}

.investors .links a:hover {
    transform: scale(1.1);
}

