/* Reduce contact icon size globally */
.single-contact-box i {
    font-size: 18px !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
}

/* Reduce form field sizes */
.contact-form-area .form-group input {
    height: 40px !important;
}

.contact-form-area .form-group textarea {
    height: 100px !important;
}

/* Adjust icon position in form fields */
.contact-form-area .form-group .icon {
    top: 10px !important;
}

.contact-form-area .form-group.textarea .icon {
    top: 15px !important;
}

/* Flexbox layout for contact boxes to align text properly */
.single-contact-box {
    display: flex;
    align-items: flex-start;
}

.single-contact-box .c-icon {
    float: none !important;
    margin-right: 15px;
    flex-shrink: 0;
}

.single-contact-box .c-text {
    width: 100%;
}

/* Ensure text breaks properly on mobile */
@media (max-width: 767px) {
    .single-contact-box .c-text p {
        word-break: break-word;
    }
}