.apps-section {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.talk-to-us-section {
    display: flex; 
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    
    .talk-to-us-section {
        display: flex; 
        flex-direction: row;
    }

    .apps-section {
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        gap: 0;
        width: 100%; 
        align-items: baseline;
        margin-bottom: 2rem;
    }
}

.footer-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-item-container {
        display: flex;
        flex-direction: row;
        text-align: start;
        align-items: baseline;
        gap: 2rem;
    }
}

.footer-item-title {
    color: #25D325; 
    font-size: 1.5rem;
}

.footer-item-links-section {
    display: flex;
    flex-direction: column;
    gap: 4px;

}

.footer-item-link {
    color: #A1A7A8;
}

.footer-item-link:hover {
    color: #25D325; 
    cursor: pointer;
}