/* Get In Touch contact info column layout */
.contact-section .contact-info-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    width: 100%;
}

.contact-section .contact-info-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-section .contact-info-content {
    display: flex;
    flex-direction: column;
}

.contact-section .contact-info-content h4 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-section .contact-info-content p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .contact-section .contact-info-item {
        margin-bottom: 15px;
    }
    
    .contact-section .contact-info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}
