.main {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-bottom: 60px; 
}

.boxx {
display: flex;
align-items: center;
background: white;
border: 1px solid #e0e0e0;
border-radius: 8px;
width: 280px;
padding: 20px;
cursor: pointer;
transition: 0.3s;
text-decoration: none;
color: #333;
}

.boxx:hover {
background: #f5faff;
border-color: #4d94ff;
}

.icon {
flex-shrink: 0;
width: 48px;
height: 48px;
background: #f0f5ff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16px;
}

.icon img {
width: 24px;
height: 24px;
}

.title {
font-size: 18px;
font-weight: bold;
}

.text {
    font-size: 40px;
    margin-left: 300px;
    padding: 30px;
}