/* Contact Area - Simple Alignment Fixes Only */

/* Make all service boxes equal height */
.contact-info .row {
    display: flex;
    align-items: stretch;
}

.contact-info .col-lg-4,
.contact-info .col-md-4 {
    display: flex;
}

.contact-info .services-box {
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Center the icons properly */
.contact-info .services-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.contact-info .services-icon img {
    display: block;
    margin: 0 auto;
}

/* Center the content */
.contact-info .services-content2 {
    text-align: center;
    width: 100%;
}

.contact-info .services-content2 h5 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-info .services-content2 p {
    text-align: center;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .contact-info .row {
        flex-direction: column;
    }
    
    .contact-info .col-lg-4,
    .contact-info .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info .services-box {
        min-height: 180px;
    }
} 