/* Footer Phone List Styling - Replaces dropdown with clean list */

.phone-list {
    margin-top: 10px;
}

.phone-list .phone-item {
    margin-bottom: 8px;
}

.phone-list .phone-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.phone-list .phone-item a:hover {
    opacity: 0.8;
}

.phone-list .phone-number {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
}

.phone-list .phone-name {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 2px;
}

.phone-list .phone-item a:hover .phone-number {
    color: #b7aea8;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .phone-list .phone-number {
        font-size: 14px;
    }
    
    .phone-list .phone-name {
        font-size: 12px;
    }
}

