.equal-height-col {
display: flex;
flex-direction: column;
}

.contact-info-wrapper,
.contact-form-card {
height: 100%;
background: #fff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
border: 1px solid #eaeaea;
position: relative;
}

.info-item {
display: flex;
align-items: center;
border-radius: 8px;
background: white;
padding: 12px;
transition: all 0.3s ease;
box-shadow: 0 0 12px rgb(0 0 0 / 13%);
}

.info-item:hover {
box-shadow: 0 0 12px rgb(0 0 0 / 28%);
}

.info-item i {
font-size: 20px;
color: white;
width: 45px;
height: 45px;
background: var(--color1);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin-right: 15px;
flex-shrink: 0;
}

.info-item h5 {
margin: 0 0 5px;
font-size: 16px;
color: #333;
}

.info-item p {
margin: 0;
color: #666;
font-size: 14px;
line-height: 1.5;
}

@media (max-width: 991px) {
.contact-info-wrapper {
margin-bottom: 50px;
}

.contact-info-wrapper,
.contact-form-card {
padding: 18px;
}
}
