.footer-contact-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.footer-contact-buttons a {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-buttons .talk-to-lawyer {
    background-color: #25d366;
    color: white;
}

.footer-contact-buttons .schedule-button {
    background-color: #4285f4;
    color: white;
}

.footer-contact-buttons i {
    margin-right: 8px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .footer-contact-buttons {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .footer-contact-buttons {
        flex-direction: row;
    }
}
